2006-08-05 07:10:59 +08:00
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
|
|
|
|
AC_PREREQ(2.59)
|
2007-10-08 02:06:27 +08:00
|
|
|
|
|
|
|
AC_INIT(gold, 0.1)
|
|
|
|
AC_CONFIG_SRCDIR(gold.cc)
|
2006-08-05 07:10:59 +08:00
|
|
|
|
|
|
|
AC_CANONICAL_TARGET
|
|
|
|
|
2007-10-08 02:06:27 +08:00
|
|
|
AM_INIT_AUTOMAKE
|
2006-08-05 07:10:59 +08:00
|
|
|
|
|
|
|
AM_CONFIG_HEADER(config.h:config.in)
|
|
|
|
|
2007-10-04 13:49:04 +08:00
|
|
|
AC_ARG_WITH(sysroot,
|
|
|
|
[ --with-sysroot[=DIR] search for usr/lib et al within DIR],
|
|
|
|
[sysroot=$withval], [sysroot=no])
|
|
|
|
|
|
|
|
if test "$sysroot" = "yes"; then
|
|
|
|
sysroot='${exec_prefix}/${target_alias}/sys-root'
|
|
|
|
elif test "$sysroot" = "no"; then
|
|
|
|
sysroot=
|
|
|
|
fi
|
|
|
|
|
|
|
|
sysroot_relocatable=0
|
|
|
|
if test -n "$sysroot"; then
|
|
|
|
case "sysroot" in
|
|
|
|
"${prefix}" | "${prefix}/"* | \
|
|
|
|
"${exec_prefix}" | "${exec_prefix}/"* | \
|
|
|
|
'${prefix}' | '${prefix}/'*| \
|
|
|
|
'${exec_prefix}' | '${exec_prefix}/'*)
|
|
|
|
sysroot_relocatable=1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_DEFINE_UNQUOTED(TARGET_SYSTEM_ROOT, "$sysroot",
|
|
|
|
[System root for target files])
|
|
|
|
AC_DEFINE_UNQUOTED(TARGET_SYSTEM_ROOT_RELOCATABLE, $sysroot_relocatable,
|
|
|
|
[Whether the system root can be relocated])
|
|
|
|
|
2007-10-17 14:24:50 +08:00
|
|
|
dnl For now threads are a configure time option.
|
|
|
|
AC_ARG_ENABLE([threads],
|
|
|
|
[ --enable-threads multi-threaded linking],
|
|
|
|
[case "${enableval}" in
|
|
|
|
yes | "") threads=yes ;;
|
|
|
|
no) threads=no ;;
|
|
|
|
*) threads=yes ;;
|
|
|
|
esac],
|
|
|
|
[threads=no])
|
|
|
|
if test "$threads" = "yes"; then
|
|
|
|
AC_DEFINE(ENABLE_THREADS, 1,
|
|
|
|
[Define to do multi-threaded linking])
|
|
|
|
fi
|
|
|
|
AM_CONDITIONAL(THREADS, test "$threads" = "yes")
|
|
|
|
|
2007-09-05 04:00:53 +08:00
|
|
|
AC_ARG_ENABLE([targets],
|
|
|
|
[ --enable-targets alternative target configurations],
|
|
|
|
[case "${enableval}" in
|
|
|
|
yes | "")
|
|
|
|
AC_MSG_ERROR([--enable-targets option must specify target names or 'all'])
|
|
|
|
;;
|
|
|
|
no)
|
|
|
|
enable_targets=
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
enable_targets=$enableval
|
|
|
|
;;
|
|
|
|
esac],
|
|
|
|
[# For now, enable all targets by default
|
|
|
|
enable_targets=all
|
|
|
|
])
|
|
|
|
|
|
|
|
# Canonicalize the enabled targets.
|
|
|
|
if test -n "$enable_targets"; then
|
|
|
|
for targ in `echo $enable_targets | sed -e 's/,/ /g'`; do
|
|
|
|
result=`$ac_config_sub $targ 2>/dev/null`
|
|
|
|
if test -n "$result"; then
|
|
|
|
canon_targets="$canon_targets $result"
|
|
|
|
else
|
|
|
|
# Permit unrecognized target names, like "all".
|
|
|
|
canon_targets="$canon_targets $targ"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
# See which specific instantiations we need.
|
2007-10-01 07:41:32 +08:00
|
|
|
targetobjs=
|
|
|
|
all_targets=
|
2008-02-07 04:32:10 +08:00
|
|
|
default_machine=
|
|
|
|
default_size=
|
|
|
|
default_big_endian=
|
|
|
|
targ_32_little=
|
|
|
|
targ_32_big=
|
|
|
|
targ_64_little=
|
|
|
|
targ_64_big=
|
2007-09-05 04:00:53 +08:00
|
|
|
for targ in $target $canon_targets; do
|
|
|
|
if test "$targ" = "all"; then
|
|
|
|
targ_32_little=yes
|
|
|
|
targ_32_big=yes
|
|
|
|
targ_64_little=yes
|
|
|
|
targ_64_big=yes
|
2007-10-01 07:41:32 +08:00
|
|
|
all_targets=yes
|
2007-09-05 04:00:53 +08:00
|
|
|
else
|
2008-02-07 04:32:10 +08:00
|
|
|
. ${srcdir}/configure.tgt
|
|
|
|
|
|
|
|
if test "$targ_obj" = "UNKNOWN"; then
|
2007-10-01 07:41:32 +08:00
|
|
|
AC_MSG_ERROR("unsupported target $targ")
|
2008-02-07 04:32:10 +08:00
|
|
|
else
|
|
|
|
targetobjs="$targetobjs ${targ_obj}.\$(OBJEXT)"
|
|
|
|
if test "$targ_size" = "32"; then
|
|
|
|
if test "$targ_big_endian" = "false"; then
|
|
|
|
targ_32_little=yes
|
|
|
|
elif test "$targ_big_endian" = "true"; then
|
|
|
|
targ_32_big=yes
|
|
|
|
else
|
|
|
|
AC_MSG_ERROR("bad configure.tgt endian $targ_big_endian")
|
|
|
|
fi
|
|
|
|
elif test "$targ_size" = "64"; then
|
|
|
|
if test "$targ_big_endian" = "false"; then
|
|
|
|
targ_64_little=yes
|
|
|
|
elif test "$targ_big_endian" = "true"; then
|
|
|
|
targ_64_big=yes
|
|
|
|
else
|
|
|
|
AC_MSG_ERROR("bad configure.tgt endian $targ_big_endian")
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
AC_MSG_ERROR("bad configure.tgt size $targ_size")
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$target" = "$targ"; then
|
|
|
|
default_machine=$targ_machine
|
|
|
|
default_size=$targ_size
|
|
|
|
default_big_endian=$targ_big_endian
|
|
|
|
fi
|
|
|
|
fi
|
2007-09-05 04:00:53 +08:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if test -n "$targ_32_little"; then
|
|
|
|
AC_DEFINE(HAVE_TARGET_32_LITTLE, 1,
|
|
|
|
[Define to support 32-bit little-endian targets])
|
|
|
|
fi
|
|
|
|
if test -n "$targ_32_big"; then
|
|
|
|
AC_DEFINE(HAVE_TARGET_32_BIG, 1,
|
|
|
|
[Define to support 32-bit big-endian targets])
|
|
|
|
fi
|
|
|
|
if test -n "$targ_64_little"; then
|
|
|
|
AC_DEFINE(HAVE_TARGET_64_LITTLE, 1,
|
|
|
|
[Define to support 64-bit little-endian targets])
|
|
|
|
fi
|
|
|
|
if test -n "$targ_64_big"; then
|
|
|
|
AC_DEFINE(HAVE_TARGET_64_BIG, 1,
|
|
|
|
[Define to support 64-bit big-endian targets])
|
|
|
|
fi
|
|
|
|
|
2007-10-01 07:41:32 +08:00
|
|
|
if test -n "$all_targets"; then
|
|
|
|
TARGETOBJS='$(ALL_TARGETOBJS)'
|
|
|
|
else
|
|
|
|
TARGETOBJS="$targetobjs"
|
|
|
|
fi
|
|
|
|
AC_SUBST(TARGETOBJS)
|
|
|
|
|
2008-02-07 04:32:10 +08:00
|
|
|
AC_DEFINE_UNQUOTED(GOLD_DEFAULT_MACHINE, $default_machine,
|
|
|
|
[Default machine code])
|
|
|
|
AC_DEFINE_UNQUOTED(GOLD_DEFAULT_SIZE, $default_size,
|
|
|
|
[Default size (32 or 64)])
|
|
|
|
AC_DEFINE_UNQUOTED(GOLD_DEFAULT_BIG_ENDIAN, $default_big_endian,
|
|
|
|
[Default big endian (true or false)])
|
|
|
|
|
2006-08-05 07:10:59 +08:00
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_CXX
|
2006-11-15 03:21:05 +08:00
|
|
|
AC_PROG_YACC
|
2006-12-01 07:52:50 +08:00
|
|
|
AC_PROG_RANLIB
|
2006-08-05 07:10:59 +08:00
|
|
|
AC_PROG_INSTALL
|
2007-09-23 04:11:12 +08:00
|
|
|
AC_PROG_LN_S
|
2007-10-25 02:11:23 +08:00
|
|
|
|
|
|
|
AC_GNU_SOURCE
|
|
|
|
|
2006-08-05 07:10:59 +08:00
|
|
|
ZW_GNU_GETTEXT_SISTER_DIR
|
|
|
|
AM_PO_SUBDIRS
|
|
|
|
|
2006-10-21 04:40:49 +08:00
|
|
|
AC_C_BIGENDIAN
|
|
|
|
|
2006-08-05 07:10:59 +08:00
|
|
|
AC_EXEEXT
|
|
|
|
|
2007-09-23 04:11:12 +08:00
|
|
|
AM_CONDITIONAL(NATIVE_LINKER,
|
|
|
|
test "x$target_alias" = "x" -o "x$host_alias" = "x$target_alias")
|
|
|
|
AM_CONDITIONAL(GCC, test "$GCC" = yes)
|
2008-01-16 07:41:28 +08:00
|
|
|
AM_CONDITIONAL(OBJDUMP_AND_CPPFILT,
|
|
|
|
[objdump --help >/dev/null && c++filt --help >/dev/null])
|
2008-03-14 13:57:19 +08:00
|
|
|
AM_CONDITIONAL(READELF,
|
|
|
|
[readelf --help >/dev/null])
|
2007-09-23 04:11:12 +08:00
|
|
|
|
2007-10-03 06:45:07 +08:00
|
|
|
dnl Some architectures do not support taking pointers of functions
|
|
|
|
dnl defined in shared libraries except in -fPIC mode. We need to
|
|
|
|
dnl tell the unittest framework if we're compiling for one of those
|
|
|
|
dnl targets, so it doesn't try to run the tests that do that.
|
|
|
|
AM_CONDITIONAL(FN_PTRS_IN_SO_WITHOUT_PIC, [
|
|
|
|
case $target_cpu in
|
|
|
|
i?86) true;;
|
|
|
|
x86_64) false;;
|
|
|
|
*) true;;
|
|
|
|
esac])
|
|
|
|
|
2007-10-08 01:10:10 +08:00
|
|
|
dnl Test for __thread support.
|
2007-10-14 11:57:22 +08:00
|
|
|
AC_CACHE_CHECK([for thread support], [gold_cv_c_thread],
|
|
|
|
[AC_COMPILE_IFELSE([__thread int i = 1;],
|
|
|
|
[gold_cv_c_thread=yes], [gold_cv_c_thread=no])])
|
|
|
|
|
|
|
|
AM_CONDITIONAL(TLS, test "$gold_cv_c_thread" = "yes")
|
|
|
|
|
|
|
|
dnl On GNU/Linux TLS in static programs only works when using glibc
|
|
|
|
dnl 2.4 or later.
|
|
|
|
AC_CACHE_CHECK([for glibc >= 2.4], [gold_cv_lib_glibc24],
|
|
|
|
[AC_COMPILE_IFELSE([
|
|
|
|
#include <features.h>
|
|
|
|
#if !defined __GLIBC__
|
|
|
|
error
|
|
|
|
#elif __GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 4)
|
|
|
|
error
|
|
|
|
#endif
|
|
|
|
], [gold_cv_lib_glibc24=yes], [gold_cv_lib_glibc24=no])])
|
|
|
|
|
|
|
|
AM_CONDITIONAL(STATIC_TLS, test "$gold_cv_lib_glibc24" = "yes")
|
2007-10-08 01:10:10 +08:00
|
|
|
|
2006-08-05 07:10:59 +08:00
|
|
|
AM_BINUTILS_WARNINGS
|
|
|
|
|
|
|
|
WARN_CXXFLAGS=`echo ${WARN_CFLAGS} | sed -e 's/-Wstrict-prototypes//' -e 's/-Wmissing-prototypes//'`
|
|
|
|
AC_SUBST(WARN_CXXFLAGS)
|
|
|
|
|
|
|
|
dnl Force support for large files by default. This may need to be
|
|
|
|
dnl host dependent. If build == host, we can check getconf LFS_CFLAGS.
|
2008-01-23 09:31:13 +08:00
|
|
|
LFS_CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
|
|
|
|
AC_SUBST(LFS_CFLAGS)
|
2006-08-05 07:10:59 +08:00
|
|
|
|
2007-09-25 14:43:17 +08:00
|
|
|
AC_REPLACE_FUNCS(pread)
|
|
|
|
|
2007-11-30 08:35:27 +08:00
|
|
|
# Link in zlib if we can. This allows us to write compressed sections.
|
|
|
|
AC_SEARCH_LIBS(zlibVersion, z, [AC_CHECK_HEADERS(zlib.h)])
|
|
|
|
|
2006-09-27 05:00:34 +08:00
|
|
|
AC_LANG_PUSH(C++)
|
2006-09-27 05:20:56 +08:00
|
|
|
|
2006-09-27 05:00:34 +08:00
|
|
|
AC_CHECK_HEADERS(tr1/unordered_set tr1/unordered_map)
|
|
|
|
AC_CHECK_HEADERS(ext/hash_map ext/hash_set)
|
2007-10-12 13:51:25 +08:00
|
|
|
AC_CHECK_FUNCS(mallinfo)
|
2006-09-27 05:20:56 +08:00
|
|
|
|
2006-09-27 05:00:34 +08:00
|
|
|
AC_LANG_POP(C++)
|
|
|
|
|
2006-08-05 07:10:59 +08:00
|
|
|
AM_MAINTAINER_MODE
|
|
|
|
|
2006-12-01 07:52:50 +08:00
|
|
|
AC_OUTPUT(Makefile testsuite/Makefile po/Makefile.in:po/Make-in)
|