mirror of
https://github.com/linuxboot/linuxboot
synced 2024-11-22 17:01:28 +00:00
Fix coreboot build where gcc defaults to pie (issue #177)
See 8bbd596de6
This commit is contained in:
parent
132d26de05
commit
a39a24665c
@ -493,3 +493,21 @@ index a2ca1c1..df80286 100644
|
||||
+ }
|
||||
+}
|
||||
+
|
||||
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc
|
||||
index 4883754..1037fe0 100755
|
||||
--- a/util/crossgcc/buildgcc
|
||||
+++ b/util/crossgcc/buildgcc
|
||||
@@ -502,6 +502,13 @@ set_hostcflags_from_gmp() {
|
||||
}
|
||||
|
||||
build_GMP() {
|
||||
+ # Check if GCC enables `-pie` by default (possible since GCC 6).
|
||||
+ # We need PIC in all static libraries then.
|
||||
+ if "${CC}" -dumpspecs 2>/dev/null | grep -q '[{;][[:space:]]*:-pie\>'
|
||||
+ then
|
||||
+ OPTIONS="$OPTIONS --with-pic"
|
||||
+ fi
|
||||
+
|
||||
CC="$CC" ../${GMP_DIR}/configure --disable-shared --enable-fat \
|
||||
--prefix=$TARGETDIR $OPTIONS \
|
||||
|| touch .failed
|
||||
|
Loading…
Reference in New Issue
Block a user