diff options
| author | Russ Cox <rsc@swtch.com> | 2009-08-30 23:02:08 -0700 | 
|---|---|---|
| committer | Russ Cox <rsc@swtch.com> | 2009-08-30 23:02:08 -0700 | 
| commit | 48755214c9a02d6249caf3126d3b41d67eda4730 (patch) | |
| tree | 2edc8b996fd7c3ef2da8876d657140e242999d93 /Makefile | |
| parent | 0aef8914959af9e472852611eb6352c211093d35 (diff) | |
| download | xv6-labs-48755214c9a02d6249caf3126d3b41d67eda4730.tar.gz xv6-labs-48755214c9a02d6249caf3126d3b41d67eda4730.tar.bz2 xv6-labs-48755214c9a02d6249caf3126d3b41d67eda4730.zip | |
assorted fixes:
 * rename c/cp to cpu/proc
 * rename cpu.context to cpu.scheduler
 * fix some comments
 * formatting for printout
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -37,7 +37,7 @@ AS = $(TOOLPREFIX)gas  LD = $(TOOLPREFIX)ld  OBJCOPY = $(TOOLPREFIX)objcopy  OBJDUMP = $(TOOLPREFIX)objdump -CFLAGS = -fno-builtin -O2 -Wall -MD -ggdb -m32 +CFLAGS = -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32  CFLAGS += $(shell $(CC) -fno-stack-protector -E -x c /dev/null >/dev/null 2>&1 && echo -fno-stack-protector)  ASFLAGS = -m32  # FreeBSD ld wants ``elf_i386_fbsd'' | 
