diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-01-06 22:45:29 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-01-06 22:45:29 +0100 |
commit | 6be0d03ae89ffef23a0da0d759fbe36e90ae220a (patch) | |
tree | ad92c0f14ade3948fc23a0af1a2ca1718acc6df1 /lib/Makefile | |
parent | ebf8d357bd09e6eef9bbe74250fea06641090998 (diff) | |
download | dynld-6be0d03ae89ffef23a0da0d759fbe36e90ae220a.tar.gz dynld-6be0d03ae89ffef23a0da0d759fbe36e90ae220a.zip |
disable stack protector for simplicity of these linker studies
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile index 5f8a1a9..6006be5 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -23,6 +23,7 @@ src/%.o: src/%.c -Wall -Wextra \ -I$(CURDIR)/include \ -nostdlib \ + -fno-stack-protector \ $< clean: |