about summary refs log tree commit diff stats
path: root/kernel.soso/Makefile
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-10-18 23:11:55 -0700
committerKartik Agaram <vc@akkartik.com>2019-10-18 23:11:55 -0700
commit3a2d36a93680f2e9eb2bd2a324e4fd83eda2cfdf (patch)
tree55be16223aed0189955fbff5fac635455033f199 /kernel.soso/Makefile
parent469a1a9ace9b290658beb9d0799b58ce3bc2a4b4 (diff)
downloadmu-3a2d36a93680f2e9eb2bd2a324e4fd83eda2cfdf.tar.gz
5703
Fix https://github.com/akkartik/mu/issues/38: gen_soso_iso on Arch Linux.

Also deemphasize bootable disk images in the Readme since that side's less
mature.
Diffstat (limited to 'kernel.soso/Makefile')
-rw-r--r--kernel.soso/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/kernel.soso/Makefile b/kernel.soso/Makefile
index 3826b0e9..d9f4210a 100644
--- a/kernel.soso/Makefile
+++ b/kernel.soso/Makefile
@@ -1,6 +1,8 @@
 CC=cc
 LD=ld
-CFLAGS=-nostdlib -nostdinc -fno-builtin -m32 -c
+# disable stack-protector to support Arch Linux
+# (https://bugs.archlinux.org/task/18864)
+CFLAGS=-nostdlib -nostdinc -fno-builtin -fno-stack-protector -m32 -c
 LDFLAGS=-Tlink.ld -m elf_i386
 ASFLAGS=-felf