diff options
author | Alexis211 <alexis211@gmail.com> | 2009-10-17 16:40:56 +0200 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-10-17 16:40:56 +0200 |
commit | 9520a1a101b264abe700c3f7753f5f55bba4c681 (patch) | |
tree | 2d73552c689c4de39b28c0e9930bc135b199a273 /Source/Kernel/Makefile | |
parent | 45fcf4cc7ddacd93df2dd4d88ad31f6061e8d4a8 (diff) | |
download | Melon-9520a1a101b264abe700c3f7753f5f55bba4c681.tar.gz Melon-9520a1a101b264abe700c3f7753f5f55bba4c681.zip |
Each thread now has a kernel stack and an user stack
Diffstat (limited to 'Source/Kernel/Makefile')
-rw-r--r-- | Source/Kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Kernel/Makefile b/Source/Kernel/Makefile index 56754d0..118ea29 100644 --- a/Source/Kernel/Makefile +++ b/Source/Kernel/Makefile @@ -5,7 +5,7 @@ CXX = g++ LD = ld LDFLAGS = -T Link.ld -Map Map.txt --oformat=elf32-i386 CFLAGS = -nostdlib -nostartfiles -nodefaultlibs -fno-builtin -fno-stack-protector -Wall -Wextra -Werror -I . -CXXFLAGS = -nostartfiles -nostdlib -fno-exceptions -fno-rtti -I . -Wall -Werror -Wno-write-strings -funsigned-char -D THIS_IS_MELON -D RANDOM_SEED=1`date +%N`LL +CXXFLAGS = -nostartfiles -nostdlib -fno-exceptions -fno-rtti -I . -Wall -Werror -Wno-write-strings -funsigned-char -D THIS_IS_MELON -D RANDOM_SEED=1`date +%N`LL -g ASM = nasm ASMFLAGS = -f elf |