[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 3/7] configure: Do not force pie=no for non-x86
From: |
Richard Henderson |
Subject: |
[PATCH 3/7] configure: Do not force pie=no for non-x86 |
Date: |
Tue, 17 Dec 2019 17:19:16 -1000 |
PIE is supported on many other hosts besides x86.
The default for non-x86 is now the same as x86: pie is used
if supported, and may be forced via --enable/--disable-pie.
Signed-off-by: Richard Henderson <address@hidden>
---
configure | 10 ----------
1 file changed, 10 deletions(-)
diff --git a/configure b/configure
index 255ac432af..2fb4457d7c 100755
--- a/configure
+++ b/configure
@@ -2012,16 +2012,6 @@ if ! compile_prog "-Werror" "" ; then
"Thread-Local Storage (TLS). Please upgrade to a version that does."
fi
-if test "$pie" = ""; then
- case "$cpu-$targetos" in
- i386-Linux|x86_64-Linux|x32-Linux|i386-OpenBSD|x86_64-OpenBSD)
- ;;
- *)
- pie="no"
- ;;
- esac
-fi
-
if test "$pie" != "no" ; then
cat > $TMPC << EOF
--
2.20.1
- [PATCH 0/7] configure: Improve PIE and other linkage, Richard Henderson, 2019/12/17
- [PATCH 1/7] configure: Drop adjustment of textseg, Richard Henderson, 2019/12/17
- [PATCH 2/7] tcg: Remove softmmu code_gen_buffer fixed address, Richard Henderson, 2019/12/17
- [PATCH 3/7] configure: Do not force pie=no for non-x86,
Richard Henderson <=
- [PATCH 4/7] configure: Always detect -no-pie toolchain support, Richard Henderson, 2019/12/17
- [PATCH 5/7] configure: Unnest detection of -z,relro and -z,now, Richard Henderson, 2019/12/17
- [PATCH 7/7] configure: Support -static-pie if requested, Richard Henderson, 2019/12/17