]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - ld/configure.in
daily update
[thirdparty/binutils-gdb.git] / ld / configure.in
CommitLineData
252b5132
RH
1dnl Process this file with autoconf to produce a configure script
2dnl
da594c4a
AM
3AC_PREREQ(2.59)
4AC_INIT
5AC_CONFIG_SRCDIR(ldmain.c)
252b5132 6
da594c4a 7AC_CANONICAL_TARGET
02ecc8e9 8AC_CANONICAL_BUILD
5d64ca4e 9AC_ISC_POSIX
252b5132 10
27b7e12d
AM
11changequote(,)dnl
12BFD_VERSION=`sed -n -e 's/^.._INIT_AUTOMAKE.*,[ ]*\([^ ]*\)[ ]*).*/\1/p' < ${srcdir}/../bfd/configure.in`
13changequote([,])dnl
14AM_INIT_AUTOMAKE(ld, ${BFD_VERSION})
64ac50ac 15AM_MAINTAINER_MODE
252b5132 16
8e523c23 17AC_ARG_WITH(lib-path, [ --with-lib-path=dir1:dir2... set default LIB_PATH],LIB_PATH=$withval)
252b5132
RH
18AC_ARG_ENABLE(targets,
19[ --enable-targets alternative target configurations],
20[case "${enableval}" in
da594c4a 21 yes | "") AC_MSG_ERROR(enable-targets option must specify target names or 'all')
252b5132
RH
22 ;;
23 no) enable_targets= ;;
24 *) enable_targets=$enableval ;;
25esac])dnl
26AC_ARG_ENABLE(64-bit-bfd,
27[ --enable-64-bit-bfd 64-bit support (on hosts with narrower word sizes)],
28[case "${enableval}" in
29 yes) want64=true ;;
30 no) want64=false ;;
31 *) AC_MSG_ERROR(bad value ${enableval} for 64-bit-bfd option) ;;
32esac],[want64=false])dnl
33
9c8ebd6a
DJ
34AC_ARG_WITH(sysroot,
35[ --with-sysroot[=DIR] Search for usr/lib et al within DIR.],
36[
37 case ${with_sysroot} in
715d1656 38 yes) TARGET_SYSTEM_ROOT='${exec_prefix}/${target_alias}/sys-root' ;;
9c8ebd6a
DJ
39 *) TARGET_SYSTEM_ROOT=$with_sysroot ;;
40 esac
41
42 TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"$(TARGET_SYSTEM_ROOT)\"'
43 use_sysroot=yes
44
fa1e8d8e
RS
45 if test "x$prefix" = xNONE; then
46 test_prefix=/usr/local
47 else
48 test_prefix=$prefix
49 fi
9c8ebd6a 50 if test "x$exec_prefix" = xNONE; then
fa1e8d8e 51 test_exec_prefix=$test_prefix
9c8ebd6a 52 else
fa1e8d8e 53 test_exec_prefix=$exec_prefix
9c8ebd6a
DJ
54 fi
55 case ${TARGET_SYSTEM_ROOT} in
715d1656 56 "${test_prefix}"|"${test_prefix}/"*|\
fa1e8d8e
RS
57 "${test_exec_prefix}"|"${test_exec_prefix}/"*|\
58 '${prefix}'|'${prefix}/'*|\
715d1656 59 '${exec_prefix}'|'${exec_prefix}/'*)
9c8ebd6a
DJ
60 t="$TARGET_SYSTEM_ROOT_DEFINE -DTARGET_SYSTEM_ROOT_RELOCATABLE"
61 TARGET_SYSTEM_ROOT_DEFINE="$t"
62 ;;
63 esac
64], [
65 use_sysroot=no
66 TARGET_SYSTEM_ROOT=
67 TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"\"'
68])
69AC_SUBST(use_sysroot)
70AC_SUBST(TARGET_SYSTEM_ROOT)
71AC_SUBST(TARGET_SYSTEM_ROOT_DEFINE)
72
4fda8867
NC
73dnl Use --enable-gold to decide if this linker should be the default.
74dnl "install_as_default" is set to false if gold is the default linker.
75dnl "installed_linker" is the installed BFD linker name.
76AC_ARG_ENABLE(gold,
c7791212 77[[ --enable-gold[=ARG] build gold [ARG={default,yes,no}]]],
bf9ef603 78[case "${enableval}" in
c7791212 79 default)
4fda8867
NC
80 install_as_default=no
81 installed_linker=ld.bfd
82 ;;
c7791212 83 yes|no)
4fda8867
NC
84 install_as_default=yes
85 installed_linker=ld.bfd
86 ;;
87 *)
88 AC_MSG_ERROR([invalid --enable-gold argument])
89 ;;
90 esac],
c7791212
NC
91[install_as_default=yes
92 installed_linker=ld.bfd])
4fda8867
NC
93AC_SUBST(install_as_default)
94AC_SUBST(installed_linker)
95
7fb9f789
NC
96AC_ARG_ENABLE([got],
97AS_HELP_STRING([--enable-got=<type>],
98 [GOT handling scheme (target, single, negative, multigot)]),
99[case "${enableval}" in
100 target | single | negative | multigot) got_handling=$enableval ;;
da594c4a 101 *) AC_MSG_ERROR(bad value ${enableval} for --enable-got option) ;;
7fb9f789
NC
102esac],
103[got_handling=target])
104
105case "${got_handling}" in
106 target)
107 AC_DEFINE([GOT_HANDLING_DEFAULT], [GOT_HANDLING_TARGET_DEFAULT],
108 [Define to choose default GOT handling scheme]) ;;
109 single)
110 AC_DEFINE([GOT_HANDLING_DEFAULT], [GOT_HANDLING_SINGLE],
111 [Define to choose default GOT handling scheme]) ;;
112 negative)
113 AC_DEFINE([GOT_HANDLING_DEFAULT], [GOT_HANDLING_NEGATIVE],
114 [Define to choose default GOT handling scheme]) ;;
115 multigot)
116 AC_DEFINE([GOT_HANDLING_DEFAULT], [GOT_HANDLING_MULTIGOT],
117 [Define to choose default GOT handling scheme]) ;;
da594c4a 118 *) AC_MSG_ERROR(bad value ${got_handling} for --enable-got option) ;;
7fb9f789
NC
119esac
120
502bdb00 121AM_BINUTILS_WARNINGS
a2d91340 122
da594c4a 123AC_CONFIG_HEADERS([config.h:config.in])
252b5132
RH
124
125if test -z "$target" ; then
126 AC_MSG_ERROR(Unrecognized target system type; please check config.sub.)
127fi
128if test -z "$host" ; then
129 AC_MSG_ERROR(Unrecognized host system type; please check config.sub.)
130fi
131
132# host-specific stuff:
133
134AC_PROG_CC
3cb62297 135AC_PROG_CXX
67310ccd 136AC_GNU_SOURCE
7357c5b6 137AC_USE_SYSTEM_EXTENSIONS
da2f07f1 138ACX_LARGEFILE
252b5132
RH
139AC_PROG_INSTALL
140
da594c4a 141LT_INIT
ce2cded5 142
b3ee5f65 143ALL_LINGUAS="fr sv tr es da vi zh_CN zh_TW ga fi id bg it"
20e95c23
DJ
144ZW_GNU_GETTEXT_SISTER_DIR
145AM_PO_SUBDIRS
252b5132
RH
146
147AC_EXEEXT
148
149AC_PROG_YACC
150AM_PROG_LEX
151
152AM_MAINTAINER_MODE
d5fbea21 153AM_CONDITIONAL(GENINSRC_NEVER, false)
eccbf555 154ACX_PROG_CMP_IGNORE_INITIAL
252b5132
RH
155
156. ${srcdir}/configure.host
157
158AC_SUBST(HDEFINES)
159AC_SUBST(HOSTING_CRT0)
160AC_SUBST(HOSTING_LIBS)
161AC_SUBST(NATIVE_LIB_DIRS)
162
a3ffa599 163AC_CHECK_HEADERS(string.h strings.h stdlib.h unistd.h elf-hints.h limits.h sys/param.h)
5d3236ee 164AC_CHECK_HEADERS(fcntl.h sys/file.h sys/time.h sys/stat.h)
dc27aea4 165AC_CHECK_FUNCS(glob mkstemp realpath sbrk waitpid)
5d3236ee 166AC_CHECK_FUNCS(open lseek close)
252b5132
RH
167AC_HEADER_DIRENT
168
5d3236ee
DK
169# Check for dlopen support and enable plugins if possible.
170enable_plugins=yes
171AC_CHECK_HEADER([dlfcn.h],[],[enable_plugins=no],[AC_INCLUDES_DEFAULT])
172AC_SEARCH_LIBS([dlopen],[dl],[],[enable_plugins=no],[])
173AC_CHECK_FUNCS([dlopen dlsym dlclose],[],[enable_plugins=no])
3917d5d5
DK
174# We also support plugins on Windows (MinGW).
175if test x$enable_plugins = xno ; then
f31d24a0 176 AC_CHECK_HEADERS([windows.h],[enable_plugins=yes],[],[AC_INCLUDES_DEFAULT])
3917d5d5 177fi
5d3236ee
DK
178AM_CONDITIONAL([ENABLE_PLUGINS], [test x$enable_plugins = xyes])
179
02ecc8e9
L
180AC_ARG_ENABLE(initfini-array,
181 [ --enable-initfini-array use .init_array/.fini_array sections],
182 [], [
183AC_CACHE_CHECK(for .preinit_array/.init_array/.fini_array support,
184 gcc_cv_initfini_array, [dnl
185 if test "x${build}" = "x${target}" ; then
186 AC_RUN_IFELSE([AC_LANG_SOURCE([
187static int x = -1;
188int main (void) { return x; }
189int foo (void) { x = 0; }
190int (*fp) (void) __attribute__ ((section (".init_array"))) = foo;])],
191 [gcc_cv_initfini_array=yes], [gcc_cv_initfini_array=no],
192 [gcc_cv_initfini_array=no])
193 else
194 gcc_cv_initfini_array=no
195 fi])
196 enable_initfini_array=$gcc_cv_initfini_array
197])
198AC_SUBST(enable_initfini_array)
199if test $enable_initfini_array = yes; then
200 AC_DEFINE(HAVE_INITFINI_ARRAY, 1,
201 [Define .init_array/.fini_array sections are available and working.])
202fi
203
34875e64
NC
204AC_MSG_CHECKING(for a known getopt prototype in unistd.h)
205AC_CACHE_VAL(ld_cv_decl_getopt_unistd_h,
da594c4a 206[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <unistd.h>], [extern int getopt (int, char *const*, const char *);])],
34875e64
NC
207ld_cv_decl_getopt_unistd_h=yes, ld_cv_decl_getopt_unistd_h=no)])
208AC_MSG_RESULT($ld_cv_decl_getopt_unistd_h)
209if test $ld_cv_decl_getopt_unistd_h = yes; then
210 AC_DEFINE([HAVE_DECL_GETOPT], 1,
211 [Is the prototype for getopt in <unistd.h> in the expected format?])
212fi
bf9ef603 213
252b5132
RH
214BFD_BINARY_FOPEN
215
502bdb00 216AC_CHECK_DECLS([strstr, free, sbrk, getenv, environ])
252b5132 217
4474d12b
CS
218# Link in zlib if we can. This is needed only for the bootstrap tests
219# right now, since those tests use libbfd, which depends on zlib.
52546677 220AM_ZLIB
4474d12b 221
597e2591
ILT
222# When converting linker scripts into strings for use in emulation
223# files, use astring.sed if the compiler supports ANSI string
224# concatenation, or ostring.sed otherwise. This is to support the
225# broken Microsoft MSVC compiler, which limits the length of string
226# constants, while still supporting pre-ANSI compilers which do not
227# support string concatenation.
e4dabd0e 228AC_MSG_CHECKING([whether ANSI C string concatenation works])
597e2591 229AC_CACHE_VAL(ld_cv_string_concatenation,
da594c4a
AM
230[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [char *a = "a" "a";])],
231 ld_cv_string_concatenation=yes,
232 ld_cv_string_concatenation=no)])
e4dabd0e
AS
233AC_MSG_RESULT($ld_cv_string_concatenation)
234if test "$ld_cv_string_concatenation" = "yes"; then
597e2591
ILT
235 STRINGIFY=astring.sed
236else
237 STRINGIFY=ostring.sed
238fi
239AC_SUBST(STRINGIFY)
240
252b5132
RH
241# target-specific stuff:
242
243all_targets=
244EMUL=
245all_emuls=
246all_emul_extras=
ba2be581 247all_libpath=
252b5132
RH
248
249dnl We need to get an arbitrary number of tdir definitions into
250dnl Makefile. We can't do it using AC_SUBST, because autoconf does
251dnl not permit literal newlines in an AC_SUBST variables. So we use a
252dnl file.
253rm -f tdirs
254
bf9ef603
RM
255# If the host is 64-bit, then we enable 64-bit targets by default.
256# This is consistent with what ../bfd/configure.in does.
257if test x${want64} = xfalse; then
258 AC_CHECK_SIZEOF(void *)
259 if test "x${ac_cv_sizeof_void_p}" = "x8"; then
260 want64=true
261 fi
262fi
263
252b5132
RH
264for targ_alias in `echo $target_alias $enable_targets | sed 's/,/ /g'`
265do
266 if test "$targ_alias" = "all"; then
267 all_targets=true
268 else
269 # Canonicalize the secondary target names.
42ecbf5e 270 result=`$ac_config_sub $targ_alias 2>/dev/null`
252b5132
RH
271 if test -n "$result"; then
272 targ=$result
273 else
274 targ=$targ_alias
275 fi
276
277 . ${srcdir}/configure.tgt
278
279 if test "$targ" = "$target"; then
280 EMUL=$targ_emul
281 fi
282
314e9a4e
L
283 if test x${want64} = xfalse; then
284 . ${srcdir}/../bfd/config.bfd
285 fi
286
534d3119
L
287 if test x${want64} = xtrue; then
288 targ_extra_emuls="$targ_extra_emuls $targ64_extra_emuls"
289 targ_extra_libpath="$targ_extra_libpath $targ64_extra_libpath"
290 fi
291
3336653a 292 for i in $targ_emul $targ_extra_emuls $targ_extra_libpath; do
252b5132
RH
293 case " $all_emuls " in
294 *" e${i}.o "*) ;;
295 *)
296 all_emuls="$all_emuls e${i}.o"
297 eval result=\$tdir_$i
298 test -z "$result" && result=$targ_alias
299 echo tdir_$i=$result >> tdirs
300 ;;
301 esac
302 done
303
ba2be581 304 for i in $targ_emul $targ_extra_libpath; do
3336653a
RH
305 case " $all_libpath " in
306 *" ${i} "*) ;;
307 *)
ba2be581
RH
308 if test -z "$all_libpath"; then
309 all_libpath=${i}
310 else
311 all_libpath="$all_libpath ${i}"
312 fi
3336653a
RH
313 ;;
314 esac
315 done
316
252b5132
RH
317 for i in $targ_extra_ofiles; do
318 case " $all_emul_extras " in
319 *" ${i} "*) ;;
320 *)
321 all_emul_extras="$all_emul_extras ${i}"
322 ;;
323 esac
324 done
325 fi
326done
327
328AC_SUBST(EMUL)
329
330TDIRS=tdirs
331AC_SUBST_FILE(TDIRS)
332
252b5132
RH
333if test x${all_targets} = xtrue; then
334 if test x${want64} = xtrue; then
335 EMULATION_OFILES='$(ALL_EMULATIONS) $(ALL_64_EMULATIONS)'
336 else
337 EMULATION_OFILES='$(ALL_EMULATIONS)'
338 fi
339 EMUL_EXTRA_OFILES='$(ALL_EMUL_EXTRA_OFILES)'
340else
341 EMULATION_OFILES=$all_emuls
342 EMUL_EXTRA_OFILES=$all_emul_extras
343fi
344AC_SUBST(EMULATION_OFILES)
345AC_SUBST(EMUL_EXTRA_OFILES)
8e523c23 346AC_SUBST(LIB_PATH)
252b5132 347
3336653a
RH
348EMULATION_LIBPATH=$all_libpath
349AC_SUBST(EMULATION_LIBPATH)
350
252b5132
RH
351if test x${enable_static} = xno; then
352 TESTBFDLIB="--rpath ../bfd/.libs ../bfd/.libs/libbfd.so"
353else
354 TESTBFDLIB="../bfd/.libs/libbfd.a"
355fi
356AC_SUBST(TESTBFDLIB)
357
93a6d436
JL
358target_vendor=${target_vendor=$host_vendor}
359case "$target_vendor" in
360 hp) EXTRA_SHLIB_EXTENSION=".sl" ;;
361 *) EXTRA_SHLIB_EXTENSION= ;;
362esac
f234d5fe
NC
363
364case "$target_os" in
365 lynxos) EXTRA_SHLIB_EXTENSION=".a" ;;
366esac
367
93a6d436
JL
368if test x${EXTRA_SHLIB_EXTENSION} != x ; then
369 AC_DEFINE_UNQUOTED(EXTRA_SHLIB_EXTENSION, "$EXTRA_SHLIB_EXTENSION",
370 [Additional extension a shared object might have.])
371fi
372
31dd3154 373dnl Required by html, pdf, install-pdf and install-html
108a6f8e
CD
374AC_SUBST(datarootdir)
375AC_SUBST(docdir)
376AC_SUBST(htmldir)
31dd3154 377AC_SUBST(pdfdir)
108a6f8e 378
da594c4a
AM
379AC_CONFIG_FILES(Makefile po/Makefile.in:po/Make-in)
380AC_OUTPUT