diff options
author | Frans Kaashoek <[email protected]> | 2019-07-02 13:40:33 -0400 |
---|---|---|
committer | Frans Kaashoek <[email protected]> | 2019-07-02 13:40:33 -0400 |
commit | da51735980e500922bc108a3444b64ac9450032e (patch) | |
tree | 76ad738ff42f56a36ea2300b2d90946e64d5040e /Makefile | |
parent | 67702cf706bce7adef472f0caa48d81ddfaeb33a (diff) | |
download | xv6-labs-da51735980e500922bc108a3444b64ac9450032e.tar.gz xv6-labs-da51735980e500922bc108a3444b64ac9450032e.tar.bz2 xv6-labs-da51735980e500922bc108a3444b64ac9450032e.zip |
Avoid two cores selecting the same process to run
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -54,7 +54,7 @@ OBJCOPY = $(TOOLPREFIX)objcopy OBJDUMP = $(TOOLPREFIX)objdump # CFLAGS = -fno-pic -static -fno-builtin -fno-strict-aliasing -Wall -MD -ggdb -Werror -fno-omit-frame-pointer -O -CFLAGS = -Wall -Werror -O -fno-omit-frame-pointer -ggdb +CFLAGS = -Wall -Werror -O0 -fno-omit-frame-pointer -ggdb CFLAGS += -mcmodel=medany CFLAGS += -ffreestanding -fno-common -nostdlib -mno-relax CFLAGS += -I. |