projects
/
dosdemo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7a48486
)
added -fno-pie in GNUmakefile
author
John Tsiombikas
<nuclear@member.fsf.org>
Sat, 8 Aug 2020 19:56:58 +0000
(22:56 +0300)
committer
John Tsiombikas
<nuclear@member.fsf.org>
Sat, 8 Aug 2020 19:56:58 +0000
(22:56 +0300)
GNUmakefile
patch
|
blob
|
history
diff --git
a/GNUmakefile
b/GNUmakefile
index
8b0f6fb
..
0054bbc
100644
(file)
--- a/
GNUmakefile
+++ b/
GNUmakefile
@@
-15,8
+15,8
@@
warn = -pedantic -Wall -Wno-unused-variable -Wno-unused-function
#opt = -O3 -ffast-math
dbg = -g
-CFLAGS = $(arch) $(warn) -MMD $(opt) -fno-strict-aliasing $(dbg) $(inc)
-LDFLAGS = $(arch) -Llibs/imago -Llibs/mikmod -limago -lmikmod \
+CFLAGS = $(arch) $(warn) -MMD $(opt) -fno-pie -fno-strict-aliasing $(dbg) $(inc)
+LDFLAGS = $(arch) -no-pie -Llibs/imago -Llibs/mikmod -limago -lmikmod \
$(sndlib_$(sys)) -lm
cpu ?= $(shell uname -m | sed 's/i.86/i386/')