Remove get_view_and_size.
[deliverable/binutils-gdb.git] / gold / configure.ac
CommitLineData
bae7f79e
ILT
1dnl Process this file with autoconf to produce a configure script.
2
3AC_PREREQ(2.59)
4AC_INIT
5AC_CONFIG_SRCDIR([gold.cc])
6
7AC_CANONICAL_TARGET
8
9AM_INIT_AUTOMAKE(gold, 0.1)
10
11AM_CONFIG_HEADER(config.h:config.in)
12
193a53d9
ILT
13AC_ARG_ENABLE([targets],
14[ --enable-targets alternative target configurations],
15[case "${enableval}" in
16 yes | "")
17 AC_MSG_ERROR([--enable-targets option must specify target names or 'all'])
18 ;;
19 no)
20 enable_targets=
21 ;;
22 *)
23 enable_targets=$enableval
24 ;;
25esac],
26[# For now, enable all targets by default
27 enable_targets=all
28])
29
30# Canonicalize the enabled targets.
31if test -n "$enable_targets"; then
32 for targ in `echo $enable_targets | sed -e 's/,/ /g'`; do
33 result=`$ac_config_sub $targ 2>/dev/null`
34 if test -n "$result"; then
35 canon_targets="$canon_targets $result"
36 else
37 # Permit unrecognized target names, like "all".
38 canon_targets="$canon_targets $targ"
39 fi
40 done
41fi
42
43# See which specific instantiations we need.
44for targ in $target $canon_targets; do
45 targ_32_little=
46 targ_32_big=
47 targ_64_little=
48 targ_64_big=
49 if test "$targ" = "all"; then
50 targ_32_little=yes
51 targ_32_big=yes
52 targ_64_little=yes
53 targ_64_big=yes
54 else
55 case "$targ" in
56 i?86-*) targ_32_little=yes ;;
57 x86_64-*) targ_64_little=yes ;;
58 *)
59 AC_MSG_ERROR("target $targ: unknown size and endianness")
60 ;;
61 esac
62 fi
63done
64
65if test -n "$targ_32_little"; then
66 AC_DEFINE(HAVE_TARGET_32_LITTLE, 1,
67 [Define to support 32-bit little-endian targets])
68fi
69if test -n "$targ_32_big"; then
70 AC_DEFINE(HAVE_TARGET_32_BIG, 1,
71 [Define to support 32-bit big-endian targets])
72fi
73if test -n "$targ_64_little"; then
74 AC_DEFINE(HAVE_TARGET_64_LITTLE, 1,
75 [Define to support 64-bit little-endian targets])
76fi
77if test -n "$targ_64_big"; then
78 AC_DEFINE(HAVE_TARGET_64_BIG, 1,
79 [Define to support 64-bit big-endian targets])
80fi
81
bae7f79e
ILT
82AC_PROG_CC
83AC_PROG_CXX
dbe717ef 84AC_PROG_YACC
5a6f7e2d 85AC_PROG_RANLIB
bae7f79e 86AC_PROG_INSTALL
537b5f51 87AC_PROG_LN_S
bae7f79e
ILT
88ZW_GNU_GETTEXT_SISTER_DIR
89AM_PO_SUBDIRS
90
92e059d8
ILT
91AC_C_BIGENDIAN
92
bae7f79e
ILT
93AC_EXEEXT
94
537b5f51
ILT
95AM_CONDITIONAL(NATIVE_LINKER,
96 test "x$target_alias" = "x" -o "x$host_alias" = "x$target_alias")
97AM_CONDITIONAL(GCC, test "$GCC" = yes)
98
bae7f79e
ILT
99AM_BINUTILS_WARNINGS
100
101WARN_CXXFLAGS=`echo ${WARN_CFLAGS} | sed -e 's/-Wstrict-prototypes//' -e 's/-Wmissing-prototypes//'`
102AC_SUBST(WARN_CXXFLAGS)
103
104dnl Force support for large files by default. This may need to be
105dnl host dependent. If build == host, we can check getconf LFS_CFLAGS.
106LFS_CXXFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
107AC_SUBST(LFS_CXXFLAGS)
108
54dc6425 109AC_LANG_PUSH(C++)
d288e464 110
54dc6425
ILT
111AC_CHECK_HEADERS(tr1/unordered_set tr1/unordered_map)
112AC_CHECK_HEADERS(ext/hash_map ext/hash_set)
d288e464
ILT
113
114dnl Test whether the compiler can specify a member templates to call.
115AC_COMPILE_IFELSE([
116class c { public: template<int i> void fn(); };
117template<int i> void foo(c cv) { cv.fn<i>(); }
118template void foo<1>(c cv);],
119[AC_DEFINE(HAVE_MEMBER_TEMPLATE_SPECIFICATIONS, [],
120 [Whether the C++ compiler can call a template member with no arguments])])
121
54dc6425
ILT
122AC_LANG_POP(C++)
123
bae7f79e
ILT
124AM_MAINTAINER_MODE
125
5a6f7e2d 126AC_OUTPUT(Makefile testsuite/Makefile po/Makefile.in:po/Make-in)
This page took 0.064178 seconds and 4 git commands to generate.