From Jason Merrill <jason@cygnus.com>:
[deliverable/binutils-gdb.git] / ld / configure.in
... / ...
CommitLineData
1dnl Process this file with autoconf to produce a configure script
2dnl
3AC_PREREG(2.5)
4AC_INIT(ldmain.c)
5
6AC_CANONICAL_SYSTEM
7
8AM_INIT_AUTOMAKE(ld, 2.9.1)
9
10AM_PROG_LIBTOOL
11
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
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
27
28AM_CONFIG_HEADER(config.h:config.in)
29
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
36
37# host-specific stuff:
38
39AC_PROG_CC
40AM_PROG_INSTALL
41
42ALL_LINGUAS=
43CY_GNU_GETTEXT
44
45AM_CYGWIN32
46AM_EXEEXT
47
48AC_PROG_YACC
49AM_PROG_LEX
50
51AM_MAINTAINER_MODE
52
53. ${srcdir}/configure.host
54
55AC_SUBST(HDEFINES)
56AC_SUBST(HOSTING_CRT0)
57AC_SUBST(HOSTING_LIBS)
58AC_SUBST(NATIVE_LIB_DIRS)
59
60AC_CHECK_HEADERS(string.h strings.h stdlib.h unistd.h)
61AC_CHECK_FUNCS(sbrk)
62AC_HEADER_DIRENT
63
64BFD_BINARY_FOPEN
65
66BFD_NEED_DECLARATION(strstr)
67BFD_NEED_DECLARATION(free)
68BFD_NEED_DECLARATION(sbrk)
69BFD_NEED_DECLARATION(getenv)
70
71# target-specific stuff:
72
73all_targets=
74EMUL=
75all_emuls=
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
82
83for targ_alias in `echo $target_alias $enable_targets | sed 's/,/ /g'`
84do
85 if test "$targ_alias" = "all"; then
86 all_targets=true
87 else
88 # Canonicalize the secondary target names.
89 result=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $targ_alias 2>/dev/null`
90 if test -n "$result"; then
91 targ=$result
92 else
93 targ=$targ_alias
94 fi
95
96 . ${srcdir}/configure.tgt
97
98 if test "$targ" = "$target"; then
99 EMUL=$targ_emul
100 fi
101
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
109 echo tdir_$i=$result >> tdirs
110 ;;
111 esac
112 done
113 fi
114done
115
116AC_SUBST(EMUL)
117
118TDIRS=tdirs
119AC_SUBST_FILE(TDIRS)
120
121dnl FIXME: We will build a 64 bit BFD for a 64 bit host or a 64 bit
122dnl target, and in those cases we should also build the 64 bit
123dnl emulations.
124if test x${all_targets} = xtrue; then
125 if test x${want64} = xtrue; then
126 EMULATION_OFILES='$(ALL_EMULATIONS) $(ALL_64_EMULATIONS)'
127 else
128 EMULATION_OFILES='$(ALL_EMULATIONS)'
129 fi
130else
131 EMULATION_OFILES=$all_emuls
132fi
133AC_SUBST(EMULATION_OFILES)
134
135if test x${enable_static} = xno; then
136 TESTBFDLIB="--rpath ../bfd/.libs ../bfd/.libs/libbfd.so"
137else
138 TESTBFDLIB="../bfd/.libs/libbfd.a"
139fi
140AC_SUBST(TESTBFDLIB)
141
142AC_OUTPUT(Makefile po/Makefile.in:po/Make-in,
143[sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile])
This page took 0.02206 seconds and 4 git commands to generate.