diff options
Diffstat (limited to 'Kernel/Makefile')
-rw-r--r-- | Kernel/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Kernel/Makefile b/Kernel/Makefile index 0b50600ec7..8ed28871b4 100644 --- a/Kernel/Makefile +++ b/Kernel/Makefile @@ -57,15 +57,13 @@ STANDARD_FLAGS = -std=c++17 -nostdinc++ -nostdlib #-nostdinc KERNEL_FLAGS = -ffreestanding -fno-stack-protector -fno-ident -fno-builtin WARNING_FLAGS = -Wextra -Wall -Wundef -Wcast-qual -Wwrite-strings FLAVOR_FLAGS = -mregparm=3 -march=i386 -m32 -fno-exceptions -fno-rtti -fmerge-all-constants -fno-unroll-loops -fno-pie -fno-pic -OPTIMIZATION_FLAGS = -Oz -fno-asynchronous-unwind-tables +OPTIMIZATION_FLAGS = -Oz -fno-asynchronous-unwind-tables -fno-omit-frame-pointer INCLUDE_FLAGS = -I.. -I. #SUGGEST_FLAGS = -Wsuggest-final-types -Wsuggest-final-methods -Wsuggest-override #-Wsuggest-attribute=noreturn DEFINES = -DSERENITY -DKERNEL -DSANITIZE_PTRS CXXFLAGS = $(WARNING_FLAGS) $(OPTIMIZATION_FLAGS) $(KERNEL_FLAGS) $(FLAVOR_FLAGS) $(ARCH_FLAGS) $(STANDARD_FLAGS) $(SUGGEST_FLAGS) $(INCLUDE_FLAGS) $(DEFINES) -#CXX = /usr/local/gcc-4.8.1-for-linux64/bin/x86_64-pc-linux-g++ -#LD = /usr/local/gcc-4.8.1-for-linux64/bin/x86_64-pc-linux-ld CXX = clang LD = ld LDFLAGS = -T linker.ld --strip-debug -melf_i386 --gc-sections --build-id=none -z norelro -z now |