diff options
Diffstat (limited to 'sample/Makefile')
-rw-r--r-- | sample/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sample/Makefile b/sample/Makefile index e24ab5be..bacc57ca 100644 --- a/sample/Makefile +++ b/sample/Makefile @@ -17,7 +17,7 @@ gcc_ok = $(shell if gcc $(1) -c -x c /dev/null -o /dev/null 2>/dev/null; \ then echo $(1); else echo $(2); fi) -M32 := $(call gcc_ok,-m32,) $(call gcc_ok,-ffreestanding,) +M32 := $(call gcc_ok,-m32,) $(call gcc_ok,-ffreestanding,) $(call gcc_ok,-fno-stack-protector,) CC = gcc LD = ld -m elf_i386 |