aboutsummaryrefslogtreecommitdiff
path: root/intl
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2023-08-12 09:21:31 +0930
committerAlan Modra <amodra@gmail.com>2023-08-12 10:27:57 +0930
commit6a6859cbff7ac3fcf81689c47d19e716e9bbac2a (patch)
treed13e91a0a6b293e4be76a950d384f2975aa9cc35 /intl
parente26b2c86a1a10a10d59b6e553a6f1fdc1fabb7f8 (diff)
downloadgdb-6a6859cbff7ac3fcf81689c47d19e716e9bbac2a.zip
gdb-6a6859cbff7ac3fcf81689c47d19e716e9bbac2a.tar.gz
gdb-6a6859cbff7ac3fcf81689c47d19e716e9bbac2a.tar.bz2
regen config
This regenerates config files changed by the previous 44 commits. Note that subject lines in these commits mostly match the gcc git originating commit.
Diffstat (limited to 'intl')
-rwxr-xr-xintl/configure34
1 files changed, 34 insertions, 0 deletions
diff --git a/intl/configure b/intl/configure
index e75f072..b0aae14 100755
--- a/intl/configure
+++ b/intl/configure
@@ -622,6 +622,8 @@ ac_unique_file="gettext.c"
ac_header_list=
ac_subst_vars='LTLIBOBJS
LIBOBJS
+enable_host_pie
+enable_host_shared
BISON3_NO
BISON3_YES
PICFLAG
@@ -727,6 +729,8 @@ with_included_gettext
with_libintl_prefix
with_libintl_type
enable_maintainer_mode
+enable_host_shared
+enable_host_pie
'
ac_precious_vars='build_alias
host_alias
@@ -1351,6 +1355,8 @@ Optional Features:
--disable-nls do not use Native Language Support
--disable-rpath do not hardcode runtime library paths
--enable-maintainer-mode enable rules only needed by maintainers
+ --enable-host-shared build host code as shared libraries
+ --enable-host-pie build host code as PIE
Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
@@ -6857,6 +6863,9 @@ case "${host}" in
# sets the default TLS model and affects inlining.
PICFLAG=-fPIC
;;
+ loongarch*-*-*)
+ PICFLAG=-fpic
+ ;;
mips-sgi-irix6*)
# PIC is the default.
;;
@@ -6916,6 +6925,31 @@ fi
+# Enable --enable-host-shared.
+# Check whether --enable-host-shared was given.
+if test "${enable_host_shared+set}" = set; then :
+ enableval=$enable_host_shared;
+fi
+
+
+
+# Enable --enable-host-pie.
+# Check whether --enable-host-pie was given.
+if test "${enable_host_pie+set}" = set; then :
+ enableval=$enable_host_pie;
+fi
+
+
+
+if test x$enable_host_shared = xyes; then
+ PICFLAG=-fPIC
+elif test x$enable_host_pie = xyes; then
+ PICFLAG=-fPIE
+else
+ PICFLAG=
+fi
+
+
ac_config_files="$ac_config_files Makefile config.intl"
cat >confcache <<\_ACEOF