diff options
author | Dezhi Wu <[email protected]> | 2022-06-08 21:02:50 +0800 |
---|---|---|
committer | Frans Kaashoek <[email protected]> | 2022-07-21 19:01:23 -0400 |
commit | 759bb34113d214819b2f01b2c38c0b36a5ca775b (patch) | |
tree | 87f8d7e433796dea93b95eff1b277c0e3f951f66 | |
parent | a1da53a5a12e21b44a2c79d962a437fa2107627c (diff) | |
download | xv6-labs-759bb34113d214819b2f01b2c38c0b36a5ca775b.tar.gz xv6-labs-759bb34113d214819b2f01b2c38c0b36a5ca775b.tar.bz2 xv6-labs-759bb34113d214819b2f01b2c38c0b36a5ca775b.zip |
Not treat `infinite-recursion` as error
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -56,7 +56,7 @@ LD = $(TOOLPREFIX)ld OBJCOPY = $(TOOLPREFIX)objcopy OBJDUMP = $(TOOLPREFIX)objdump -CFLAGS = -Wall -Werror -O -fno-omit-frame-pointer -ggdb +CFLAGS = -Wall -Werror -Wno-error=infinite-recursion -O -fno-omit-frame-pointer -ggdb CFLAGS += -MD CFLAGS += -mcmodel=medany CFLAGS += -ffreestanding -fno-common -nostdlib -mno-relax |