diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-07-20 22:47:54 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-07-20 22:47:54 +0200 |
commit | d179d9f1f6249b89acc66223c9cff33b2f1b5e4e (patch) | |
tree | 81d0773a2e73aa3e0faec43f24ea043388a70dee /Makefile.am | |
parent | 151dfe9971ac2bd4d9afb440f2a5b2a4f9a58969 (diff) | |
download | gnumach-d179d9f1f6249b89acc66223c9cff33b2f1b5e4e.tar.gz gnumach-d179d9f1f6249b89acc66223c9cff33b2f1b5e4e.tar.bz2 gnumach-d179d9f1f6249b89acc66223c9cff33b2f1b5e4e.zip |
Complete no-pie flags
* Makefile.am (AM_CFLAGS): Add -fno-PIE -fno-pie as well.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 2bfdcee9..684344e2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -80,7 +80,7 @@ endif # We do not support or need position-independent AM_CFLAGS += \ - -no-pie -fno-pic + -no-pie -fno-PIE -fno-pie -fno-pic # # Silent build support. |