mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
autoconf: Move export_dynamic determination to configure
Previously export_dynamic was set in src/makefiles/Makefile.$port. For solaris this required exporting with_gnu_ld. The determination of with_gnu_ld would be nontrivial to copy for meson PGXS compatibility. It's also nice to delete libtool.m4. This uses -Wl,--export-dynamic on all platforms, previously all platforms but FreeBSD used -Wl,-E. The likelihood of a name conflict seems lower with the longer spelling. Discussion: https://postgr.es/m/20221005200710.luvw5evhwf6clig6@awork3.anarazel.de
This commit is contained in:
209
configure
vendored
209
configure
vendored
@ -629,6 +629,7 @@ ac_subst_vars='LTLIBOBJS
|
||||
vpath_build
|
||||
PG_SYSROOT
|
||||
PG_VERSION_NUM
|
||||
LDFLAGS_EX_BE
|
||||
PROVE
|
||||
DBTOEPUB
|
||||
FOP
|
||||
@ -692,7 +693,6 @@ AR
|
||||
STRIP_SHARED_LIB
|
||||
STRIP_STATIC_LIB
|
||||
STRIP
|
||||
with_gnu_ld
|
||||
LDFLAGS_SL
|
||||
LDFLAGS_EX
|
||||
ZSTD_LIBS
|
||||
@ -871,7 +871,6 @@ with_system_tzdata
|
||||
with_zlib
|
||||
with_lz4
|
||||
with_zstd
|
||||
with_gnu_ld
|
||||
with_ssl
|
||||
with_openssl
|
||||
enable_largefile
|
||||
@ -1582,7 +1581,6 @@ Optional Packages:
|
||||
--without-zlib do not use Zlib
|
||||
--with-lz4 build with LZ4 support
|
||||
--with-zstd build with ZSTD support
|
||||
--with-gnu-ld assume the C compiler uses GNU ld [default=no]
|
||||
--with-ssl=LIB use LIB for SSL/TLS support (openssl)
|
||||
--with-openssl obsolete spelling of --with-ssl=openssl
|
||||
|
||||
@ -9545,105 +9543,6 @@ LDFLAGS="$LDFLAGS $LIBDIRS"
|
||||
|
||||
|
||||
|
||||
# Check whether --with-gnu-ld was given.
|
||||
if test "${with_gnu_ld+set}" = set; then :
|
||||
withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes
|
||||
else
|
||||
with_gnu_ld=no
|
||||
fi
|
||||
|
||||
ac_prog=ld
|
||||
if test "$GCC" = yes; then
|
||||
# Check if gcc -print-prog-name=ld gives a path.
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by GCC" >&5
|
||||
$as_echo_n "checking for ld used by GCC... " >&6; }
|
||||
case $host in
|
||||
*-*-mingw*)
|
||||
# gcc leaves a trailing carriage return which upsets mingw
|
||||
ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
|
||||
*)
|
||||
ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
|
||||
esac
|
||||
case "$ac_prog" in
|
||||
# Accept absolute paths.
|
||||
[\\/]* | [A-Za-z]:[\\/]*)
|
||||
re_direlt='/[^/][^/]*/\.\./'
|
||||
# Canonicalize the path of ld
|
||||
ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'`
|
||||
while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
|
||||
ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
|
||||
done
|
||||
test -z "$LD" && LD="$ac_prog"
|
||||
;;
|
||||
"")
|
||||
# If it fails, then pretend we aren't using GCC.
|
||||
ac_prog=ld
|
||||
;;
|
||||
*)
|
||||
# If it is relative, then search for the first ld in PATH.
|
||||
with_gnu_ld=unknown
|
||||
;;
|
||||
esac
|
||||
elif test "$with_gnu_ld" = yes; then
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5
|
||||
$as_echo_n "checking for GNU ld... " >&6; }
|
||||
else
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5
|
||||
$as_echo_n "checking for non-GNU ld... " >&6; }
|
||||
fi
|
||||
if ${ac_cv_path_LD+:} false; then :
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
if test -z "$LD"; then
|
||||
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
|
||||
for ac_dir in $PATH; do
|
||||
test -z "$ac_dir" && ac_dir=.
|
||||
if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
|
||||
ac_cv_path_LD="$ac_dir/$ac_prog"
|
||||
# Check to see if the program is GNU ld. I'd rather use --version,
|
||||
# but apparently some GNU ld's only accept -v.
|
||||
# Break only if it was the GNU/non-GNU ld that we prefer.
|
||||
if "$ac_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then
|
||||
test "$with_gnu_ld" != no && break
|
||||
else
|
||||
test "$with_gnu_ld" != yes && break
|
||||
fi
|
||||
fi
|
||||
done
|
||||
IFS="$ac_save_ifs"
|
||||
else
|
||||
ac_cv_path_LD="$LD" # Let the user override the test with a path.
|
||||
fi
|
||||
fi
|
||||
|
||||
LD="$ac_cv_path_LD"
|
||||
if test -n "$LD"; then
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5
|
||||
$as_echo "$LD" >&6; }
|
||||
else
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||
$as_echo "no" >&6; }
|
||||
fi
|
||||
test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5
|
||||
$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
|
||||
if ${ac_cv_prog_gnu_ld+:} false; then :
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
# I'd rather use --version here, but apparently some GNU ld's only accept -v.
|
||||
if $LD -v 2>&1 </dev/null | egrep '(GNU|with BFD)' 1>&5; then
|
||||
ac_cv_prog_gnu_ld=yes
|
||||
else
|
||||
ac_cv_prog_gnu_ld=no
|
||||
fi
|
||||
fi
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_gnu_ld" >&5
|
||||
$as_echo "$ac_cv_prog_gnu_ld" >&6; }
|
||||
with_gnu_ld=$ac_cv_prog_gnu_ld
|
||||
|
||||
|
||||
|
||||
|
||||
if test -n "$ac_tool_prefix"; then
|
||||
# Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
|
||||
set dummy ${ac_tool_prefix}strip; ac_word=$2
|
||||
@ -19213,15 +19112,15 @@ else
|
||||
fi
|
||||
|
||||
if test "$PORTNAME" = "darwin"; then
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC supports -Wl,-dead_strip_dylibs" >&5
|
||||
$as_echo_n "checking whether $CC supports -Wl,-dead_strip_dylibs... " >&6; }
|
||||
if ${pgac_cv_prog_cc_ldflags__Wl__dead_strip_dylibs+:} false; then :
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC supports -Wl,-dead_strip_dylibs, for LDFLAGS" >&5
|
||||
$as_echo_n "checking whether $CC supports -Wl,-dead_strip_dylibs, for LDFLAGS... " >&6; }
|
||||
if ${pgac_cv_prog_cc_LDFLAGS__Wl__dead_strip_dylibs+:} false; then :
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
pgac_save_LDFLAGS=$LDFLAGS
|
||||
LDFLAGS="$pgac_save_LDFLAGS -Wl,-dead_strip_dylibs"
|
||||
if test "$cross_compiling" = yes; then :
|
||||
pgac_cv_prog_cc_ldflags__Wl__dead_strip_dylibs="assuming no"
|
||||
pgac_cv_prog_cc_LDFLAGS__Wl__dead_strip_dylibs="assuming no"
|
||||
else
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
@ -19235,9 +19134,9 @@ main ()
|
||||
}
|
||||
_ACEOF
|
||||
if ac_fn_c_try_run "$LINENO"; then :
|
||||
pgac_cv_prog_cc_ldflags__Wl__dead_strip_dylibs=yes
|
||||
pgac_cv_prog_cc_LDFLAGS__Wl__dead_strip_dylibs=yes
|
||||
else
|
||||
pgac_cv_prog_cc_ldflags__Wl__dead_strip_dylibs=no
|
||||
pgac_cv_prog_cc_LDFLAGS__Wl__dead_strip_dylibs=no
|
||||
fi
|
||||
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
|
||||
conftest.$ac_objext conftest.beam conftest.$ac_ext
|
||||
@ -19245,22 +19144,23 @@ fi
|
||||
|
||||
LDFLAGS="$pgac_save_LDFLAGS"
|
||||
fi
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_prog_cc_ldflags__Wl__dead_strip_dylibs" >&5
|
||||
$as_echo "$pgac_cv_prog_cc_ldflags__Wl__dead_strip_dylibs" >&6; }
|
||||
if test x"$pgac_cv_prog_cc_ldflags__Wl__dead_strip_dylibs" = x"yes"; then
|
||||
LDFLAGS="$LDFLAGS -Wl,-dead_strip_dylibs"
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_prog_cc_LDFLAGS__Wl__dead_strip_dylibs" >&5
|
||||
$as_echo "$pgac_cv_prog_cc_LDFLAGS__Wl__dead_strip_dylibs" >&6; }
|
||||
if test x"$pgac_cv_prog_cc_LDFLAGS__Wl__dead_strip_dylibs" = x"yes"; then
|
||||
LDFLAGS="${LDFLAGS} -Wl,-dead_strip_dylibs"
|
||||
fi
|
||||
|
||||
|
||||
elif test "$PORTNAME" = "openbsd"; then
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC supports -Wl,-Bdynamic" >&5
|
||||
$as_echo_n "checking whether $CC supports -Wl,-Bdynamic... " >&6; }
|
||||
if ${pgac_cv_prog_cc_ldflags__Wl__Bdynamic+:} false; then :
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC supports -Wl,-Bdynamic, for LDFLAGS" >&5
|
||||
$as_echo_n "checking whether $CC supports -Wl,-Bdynamic, for LDFLAGS... " >&6; }
|
||||
if ${pgac_cv_prog_cc_LDFLAGS__Wl__Bdynamic+:} false; then :
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
pgac_save_LDFLAGS=$LDFLAGS
|
||||
LDFLAGS="$pgac_save_LDFLAGS -Wl,-Bdynamic"
|
||||
if test "$cross_compiling" = yes; then :
|
||||
pgac_cv_prog_cc_ldflags__Wl__Bdynamic="assuming no"
|
||||
pgac_cv_prog_cc_LDFLAGS__Wl__Bdynamic="assuming no"
|
||||
else
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
@ -19274,9 +19174,9 @@ main ()
|
||||
}
|
||||
_ACEOF
|
||||
if ac_fn_c_try_run "$LINENO"; then :
|
||||
pgac_cv_prog_cc_ldflags__Wl__Bdynamic=yes
|
||||
pgac_cv_prog_cc_LDFLAGS__Wl__Bdynamic=yes
|
||||
else
|
||||
pgac_cv_prog_cc_ldflags__Wl__Bdynamic=no
|
||||
pgac_cv_prog_cc_LDFLAGS__Wl__Bdynamic=no
|
||||
fi
|
||||
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
|
||||
conftest.$ac_objext conftest.beam conftest.$ac_ext
|
||||
@ -19284,22 +19184,23 @@ fi
|
||||
|
||||
LDFLAGS="$pgac_save_LDFLAGS"
|
||||
fi
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_prog_cc_ldflags__Wl__Bdynamic" >&5
|
||||
$as_echo "$pgac_cv_prog_cc_ldflags__Wl__Bdynamic" >&6; }
|
||||
if test x"$pgac_cv_prog_cc_ldflags__Wl__Bdynamic" = x"yes"; then
|
||||
LDFLAGS="$LDFLAGS -Wl,-Bdynamic"
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_prog_cc_LDFLAGS__Wl__Bdynamic" >&5
|
||||
$as_echo "$pgac_cv_prog_cc_LDFLAGS__Wl__Bdynamic" >&6; }
|
||||
if test x"$pgac_cv_prog_cc_LDFLAGS__Wl__Bdynamic" = x"yes"; then
|
||||
LDFLAGS="${LDFLAGS} -Wl,-Bdynamic"
|
||||
fi
|
||||
|
||||
|
||||
else
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC supports -Wl,--as-needed" >&5
|
||||
$as_echo_n "checking whether $CC supports -Wl,--as-needed... " >&6; }
|
||||
if ${pgac_cv_prog_cc_ldflags__Wl___as_needed+:} false; then :
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC supports -Wl,--as-needed, for LDFLAGS" >&5
|
||||
$as_echo_n "checking whether $CC supports -Wl,--as-needed, for LDFLAGS... " >&6; }
|
||||
if ${pgac_cv_prog_cc_LDFLAGS__Wl___as_needed+:} false; then :
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
pgac_save_LDFLAGS=$LDFLAGS
|
||||
LDFLAGS="$pgac_save_LDFLAGS -Wl,--as-needed"
|
||||
if test "$cross_compiling" = yes; then :
|
||||
pgac_cv_prog_cc_ldflags__Wl___as_needed="assuming no"
|
||||
pgac_cv_prog_cc_LDFLAGS__Wl___as_needed="assuming no"
|
||||
else
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
@ -19313,9 +19214,9 @@ main ()
|
||||
}
|
||||
_ACEOF
|
||||
if ac_fn_c_try_run "$LINENO"; then :
|
||||
pgac_cv_prog_cc_ldflags__Wl___as_needed=yes
|
||||
pgac_cv_prog_cc_LDFLAGS__Wl___as_needed=yes
|
||||
else
|
||||
pgac_cv_prog_cc_ldflags__Wl___as_needed=no
|
||||
pgac_cv_prog_cc_LDFLAGS__Wl___as_needed=no
|
||||
fi
|
||||
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
|
||||
conftest.$ac_objext conftest.beam conftest.$ac_ext
|
||||
@ -19323,14 +19224,58 @@ fi
|
||||
|
||||
LDFLAGS="$pgac_save_LDFLAGS"
|
||||
fi
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_prog_cc_ldflags__Wl___as_needed" >&5
|
||||
$as_echo "$pgac_cv_prog_cc_ldflags__Wl___as_needed" >&6; }
|
||||
if test x"$pgac_cv_prog_cc_ldflags__Wl___as_needed" = x"yes"; then
|
||||
LDFLAGS="$LDFLAGS -Wl,--as-needed"
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_prog_cc_LDFLAGS__Wl___as_needed" >&5
|
||||
$as_echo "$pgac_cv_prog_cc_LDFLAGS__Wl___as_needed" >&6; }
|
||||
if test x"$pgac_cv_prog_cc_LDFLAGS__Wl___as_needed" = x"yes"; then
|
||||
LDFLAGS="${LDFLAGS} -Wl,--as-needed"
|
||||
fi
|
||||
|
||||
|
||||
fi
|
||||
|
||||
# For linkers that understand --export-dynamic, add that to the LDFLAGS_EX_BE
|
||||
# (backend specific ldflags). One some platforms this will always fail (e.g.,
|
||||
# windows), but on others it depends on the choice of linker (e.g., solaris).
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC supports -Wl,--export-dynamic, for LDFLAGS_EX_BE" >&5
|
||||
$as_echo_n "checking whether $CC supports -Wl,--export-dynamic, for LDFLAGS_EX_BE... " >&6; }
|
||||
if ${pgac_cv_prog_cc_LDFLAGS_EX_BE__Wl___export_dynamic+:} false; then :
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
pgac_save_LDFLAGS=$LDFLAGS
|
||||
LDFLAGS="$pgac_save_LDFLAGS -Wl,--export-dynamic"
|
||||
if test "$cross_compiling" = yes; then :
|
||||
pgac_cv_prog_cc_LDFLAGS_EX_BE__Wl___export_dynamic="assuming no"
|
||||
else
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
extern void $link_test_func (); void (*fptr) () = $link_test_func;
|
||||
int
|
||||
main ()
|
||||
{
|
||||
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
_ACEOF
|
||||
if ac_fn_c_try_run "$LINENO"; then :
|
||||
pgac_cv_prog_cc_LDFLAGS_EX_BE__Wl___export_dynamic=yes
|
||||
else
|
||||
pgac_cv_prog_cc_LDFLAGS_EX_BE__Wl___export_dynamic=no
|
||||
fi
|
||||
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
|
||||
conftest.$ac_objext conftest.beam conftest.$ac_ext
|
||||
fi
|
||||
|
||||
LDFLAGS="$pgac_save_LDFLAGS"
|
||||
fi
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_prog_cc_LDFLAGS_EX_BE__Wl___export_dynamic" >&5
|
||||
$as_echo "$pgac_cv_prog_cc_LDFLAGS_EX_BE__Wl___export_dynamic" >&6; }
|
||||
if test x"$pgac_cv_prog_cc_LDFLAGS_EX_BE__Wl___export_dynamic" = x"yes"; then
|
||||
LDFLAGS_EX_BE="${LDFLAGS_EX_BE} -Wl,--export-dynamic"
|
||||
fi
|
||||
|
||||
|
||||
|
||||
# Create compiler version string
|
||||
if test x"$GCC" = x"yes" ; then
|
||||
cc_string=`${CC} --version | sed q`
|
||||
|
Reference in New Issue
Block a user