Only allow allocated sections to contribute to the size of a region.
[deliverable/binutils-gdb.git] / ld / configure.in
CommitLineData
ef346f1a
ILT
1dnl Process this file with autoconf to produce a configure script
2dnl
b9a5c27f 3AC_PREREG(2.5)
ef346f1a
ILT
4AC_INIT(ldmain.c)
5
49c009b5
ILT
6AC_CANONICAL_SYSTEM
7
eb8061bf 8AM_INIT_AUTOMAKE(ld, 2.9.4)
49c009b5
ILT
9
10AM_PROG_LIBTOOL
11
ef346f1a
ILT
12AC_ARG_ENABLE(targets,
13[ --enable-targets alternative target configurations],
14[case "${enableval}" in
15 yes | "") AC_ERROR(enable-targets option must specify target names or 'all')
16 ;;
17 no) enable_targets= ;;
18 *) enable_targets=$enableval ;;
19esac])dnl
b9a5c27f
RS
20AC_ARG_ENABLE(64-bit-bfd,
21[ --enable-64-bit-bfd 64-bit support (on hosts with narrower word sizes)],
22[case "${enableval}" in
23 yes) want64=true ;;
24 no) want64=false ;;
25 *) AC_MSG_ERROR(bad value ${enableval} for 64-bit-bfd option) ;;
26esac],[want64=false])dnl
ef346f1a 27
49c009b5 28AM_CONFIG_HEADER(config.h:config.in)
ef346f1a 29
ef346f1a
ILT
30if test -z "$target" ; then
31 AC_MSG_ERROR(Unrecognized target system type; please check config.sub.)
32fi
33if test -z "$host" ; then
34 AC_MSG_ERROR(Unrecognized host system type; please check config.sub.)
35fi
02757e59 36
ef346f1a 37# host-specific stuff:
02757e59 38
7e19f60e 39AC_PROG_CC
49c009b5 40AM_PROG_INSTALL
8bc8f4bc
TT
41
42ALL_LINGUAS=
43CY_GNU_GETTEXT
44
49c009b5
ILT
45AM_EXEEXT
46
47AC_PROG_YACC
8bc8f4bc 48AM_PROG_LEX
49c009b5
ILT
49
50AM_MAINTAINER_MODE
7e19f60e 51
ef346f1a 52. ${srcdir}/configure.host
02757e59 53
ef346f1a
ILT
54AC_SUBST(HDEFINES)
55AC_SUBST(HOSTING_CRT0)
56AC_SUBST(HOSTING_LIBS)
57AC_SUBST(NATIVE_LIB_DIRS)
8ddef552 58
ef346f1a
ILT
59AC_CHECK_HEADERS(string.h strings.h stdlib.h unistd.h)
60AC_CHECK_FUNCS(sbrk)
2e598345 61AC_HEADER_DIRENT
ab57b174 62
ef346f1a 63BFD_BINARY_FOPEN
02757e59 64
b9a5c27f 65BFD_NEED_DECLARATION(strstr)
2e598345 66BFD_NEED_DECLARATION(free)
b9a5c27f
RS
67BFD_NEED_DECLARATION(sbrk)
68BFD_NEED_DECLARATION(getenv)
2e598345 69
ef346f1a 70# target-specific stuff:
02757e59 71
95d31c3c 72all_targets=
ef346f1a
ILT
73EMUL=
74all_emuls=
eb8061bf 75all_emul_extras=
03abc2bd
ILT
76
77dnl We need to get an arbitrary number of tdir definitions into
78dnl Makefile. We can't do it using AC_SUBST, because autoconf does
79dnl not permit literal newlines in an AC_SUBST variables. So we use a
80dnl file.
81rm -f tdirs
1c4b3cda 82
95d31c3c 83for targ_alias in `echo $target_alias $enable_targets | sed 's/,/ /g'`
1c4b3cda 84do
95d31c3c
ILT
85 if test "$targ_alias" = "all"; then
86 all_targets=true
87 else
88 # Canonicalize the secondary target names.
b9a5c27f 89 result=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $targ_alias 2>/dev/null`
95d31c3c
ILT
90 if test -n "$result"; then
91 targ=$result
1c4b3cda 92 else
95d31c3c
ILT
93 targ=$targ_alias
94 fi
7f2649bb 95
95d31c3c 96 . ${srcdir}/configure.tgt
ef346f1a 97
95d31c3c
ILT
98 if test "$targ" = "$target"; then
99 EMUL=$targ_emul
1c4b3cda 100 fi
1c4b3cda 101
95d31c3c
ILT
102 for i in $targ_emul $targ_extra_emuls; do
103 case " $all_emuls " in
104 *" e${i}.o "*) ;;
105 *)
106 all_emuls="$all_emuls e${i}.o"
107 eval result=\$tdir_$i
108 test -z "$result" && result=$targ_alias
03abc2bd 109 echo tdir_$i=$result >> tdirs
95d31c3c 110 ;;
1c4b3cda
ILT
111 esac
112 done
eb8061bf
DD
113
114 for i in $targ_extra_ofiles; do
115 case " $all_emul_extras " in
116 *" ${i} "*) ;;
117 *)
118 all_emul_extras="$all_emul_extras ${i}"
119 ;;
120 esac
121 done
95d31c3c
ILT
122 fi
123done
1c4b3cda 124
95d31c3c 125AC_SUBST(EMUL)
03abc2bd
ILT
126
127TDIRS=tdirs
128AC_SUBST_FILE(TDIRS)
1c4b3cda 129
b9a5c27f
RS
130dnl FIXME: We will build a 64 bit BFD for a 64 bit host or a 64 bit
131dnl target, and in those cases we should also build the 64 bit
132dnl emulations.
95d31c3c 133if test x${all_targets} = xtrue; then
b9a5c27f
RS
134 if test x${want64} = xtrue; then
135 EMULATION_OFILES='$(ALL_EMULATIONS) $(ALL_64_EMULATIONS)'
136 else
137 EMULATION_OFILES='$(ALL_EMULATIONS)'
138 fi
e1dfd97d 139 EMUL_EXTRA_OFILES='$(ALL_EMUL_EXTRA_OFILES)'
95d31c3c
ILT
140else
141 EMULATION_OFILES=$all_emuls
eb8061bf 142 EMUL_EXTRA_OFILES=$all_emul_extras
95d31c3c 143fi
ef346f1a 144AC_SUBST(EMULATION_OFILES)
eb8061bf 145AC_SUBST(EMUL_EXTRA_OFILES)
8ddef552 146
8bc8f4bc
TT
147if test x${enable_static} = xno; then
148 TESTBFDLIB="--rpath ../bfd/.libs ../bfd/.libs/libbfd.so"
149else
150 TESTBFDLIB="../bfd/.libs/libbfd.a"
151fi
152AC_SUBST(TESTBFDLIB)
153
154AC_OUTPUT(Makefile po/Makefile.in:po/Make-in,
155[sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile])
This page took 0.24048 seconds and 4 git commands to generate.