diff options
author | Zach van Rijn <me@zv.io> | 2025-02-22 23:56:01 -0600 |
---|---|---|
committer | Zach van Rijn <me@zv.io> | 2025-02-22 23:56:01 -0600 |
commit | 041e284a4690ce0dbf53c895fc80618e43f5287b (patch) | |
tree | c74ebba125e1509f4271895eeaf99b09ef62bfd4 | |
parent | 64c513001fa2c3aaeb78b7a6275b966033ca3e19 (diff) | |
download | bootstrap-041e284a4690ce0dbf53c895fc80618e43f5287b.tar.gz bootstrap-041e284a4690ce0dbf53c895fc80618e43f5287b.tar.bz2 bootstrap-041e284a4690ce0dbf53c895fc80618e43f5287b.tar.xz bootstrap-041e284a4690ce0dbf53c895fc80618e43f5287b.zip |
bootstrap: disable default pie globally. fixes #9.
-rwxr-xr-x | bootstrap | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -5,7 +5,7 @@ # Purpose : Bootstraps Adélie from source for any architecture. # Authors : Zach van Rijn <me@zv.io> # License : MIT -# Revision : 20241215 +# Revision : 20250222 #=============================================================== #=============================================================== @@ -453,6 +453,9 @@ if ! test -d "${MTOOLS}"/sys/emus/bin; then # FIXME: no hard code # must be supported by musl-cross-make CONFIG_SUB_REV = 00b159274960 +# override musl-cross-make as necessary +GCC_CONFIG += --disable-default-pie + # supported targets ifneq ($(findstring aarch64-,$(TARGET)),) GCC_CONFIG += --with-arch=armv8-a --with-abi=lp64 --enable-fix-cortex-a53-835769 --enable-fix-cortex-a53-843419 @@ -484,7 +487,7 @@ GCC_CONFIG += --with-arch=loongarch64 endif ifneq ($(findstring m68k-,$(TARGET)),) -GCC_CONFIG += --with-arch=m68k --with-cpu=m68020 --disable-default-pie +GCC_CONFIG += --with-arch=m68k --with-cpu=m68020 endif ifneq ($(findstring mips64-,$(TARGET)),) |