diff options
author | Sergey Bugaev <bugaevc@gmail.com> | 2024-03-27 19:18:34 +0300 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-03-27 19:51:06 +0100 |
commit | 62e3c40ebb090e24c70a38c13957f5a02857383e (patch) | |
tree | 0c866ffc3e0222486ae71c0bbce8de04604b1b4a /i386 | |
parent | 6036cc18e6a67a15e2b6d9dff37d05b411c199c3 (diff) | |
download | gnumach-62e3c40ebb090e24c70a38c13957f5a02857383e.tar.gz gnumach-62e3c40ebb090e24c70a38c13957f5a02857383e.tar.bz2 gnumach-62e3c40ebb090e24c70a38c13957f5a02857383e.zip |
Make -fno-PIE etc. architecture-dependent
There might be good reasons why Mach on x86 shouldn't be built as PIC/
PIE, but there are also very good reasons to support PIE on other
architectures. Potentially implementing KASLR is one such reason; but
also the Linux AArch64 boot protocol (that the AArch64 port will use for
booting) lets the bootloader load the kernel image at any address,
which makes PIC pretty much required.
Message-ID: <20240327161841.95685-11-bugaevc@gmail.com>
Diffstat (limited to 'i386')
-rw-r--r-- | i386/Makefrag.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/i386/Makefrag.am b/i386/Makefrag.am index 5e7d4740..7a339417 100644 --- a/i386/Makefrag.am +++ b/i386/Makefrag.am @@ -170,6 +170,10 @@ gnumach_LINKFLAGS += \ -T '$(srcdir)'/i386/ldscript endif +# We do not support or need position-independent +AM_CFLAGS += \ + -no-pie -fno-PIE -fno-pie -fno-pic + AM_CFLAGS += \ -mno-3dnow \ -mno-mmx \ |