Automatic date update in version.in
[deliverable/binutils-gdb.git] / bfd / configure.ac
1 dnl Process this file with autoconf to produce a configure script.
2 dnl
3 dnl Copyright (C) 2012-2018 Free Software Foundation, Inc.
4 dnl
5 dnl This file is free software; you can redistribute it and/or modify
6 dnl it under the terms of the GNU General Public License as published by
7 dnl the Free Software Foundation; either version 3 of the License, or
8 dnl (at your option) any later version.
9 dnl
10 dnl This program is distributed in the hope that it will be useful,
11 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
12 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 dnl GNU General Public License for more details.
14 dnl
15 dnl You should have received a copy of the GNU General Public License
16 dnl along with this program; see the file COPYING3. If not see
17 dnl <http://www.gnu.org/licenses/>.
18 dnl
19
20 AC_PREREQ(2.59)
21 m4_include([version.m4])
22 AC_INIT([bfd], BFD_VERSION)
23 AC_CONFIG_SRCDIR([libbfd.c])
24
25 AC_CANONICAL_TARGET
26 AC_ISC_POSIX
27
28 AM_INIT_AUTOMAKE
29
30 dnl These must be called before LT_INIT, because it may want
31 dnl to call AC_CHECK_PROG.
32 AC_CHECK_TOOL(AR, ar)
33 AC_CHECK_TOOL(RANLIB, ranlib, :)
34
35 dnl Default to a non shared library. This may be overridden by the
36 dnl configure option --enable-shared.
37 AC_DISABLE_SHARED
38
39 AC_PROG_CC
40 AC_GNU_SOURCE
41 AC_USE_SYSTEM_EXTENSIONS
42
43 LT_INIT([dlopen])
44
45 # AC_PLUGINS setting $plugins is called by ACX_LARGEFILE.
46 ACX_LARGEFILE
47
48 AM_CONDITIONAL(PLUGINS, test "$plugins" = "yes")
49
50 if test "$plugins" = "yes"; then
51 enable_targets="$enable_targets plugin"
52 fi
53
54 AC_ARG_ENABLE(64-bit-bfd,
55 [ --enable-64-bit-bfd 64-bit support (on hosts with narrower word sizes)],
56 [case "${enableval}" in
57 yes) want64=true ;;
58 no) want64=false ;;
59 *) AC_MSG_ERROR(bad value ${enableval} for 64-bit-bfd option) ;;
60 esac],[want64=false])dnl
61
62 AC_ARG_ENABLE(targets,
63 [ --enable-targets alternative target configurations],
64 [case "${enableval}" in
65 yes | "") AC_MSG_ERROR([enable-targets option must specify target names or 'all'])
66 ;;
67 no) enable_targets= ;;
68 *) enable_targets=$enableval ;;
69 esac])dnl
70
71 AC_ARG_ENABLE(64_bit_archive,
72 AS_HELP_STRING([--enable-64-bit-archive],
73 [force 64-bit archives]),
74 [case "${enableval}" in
75 yes) want_64_bit_archive=true ;;
76 no) want_64_bit_archive=false ;;
77 *) AC_MSG_ERROR(bad value ${enableval} for 64-bit-archive option) ;;
78 esac],[want_64_bit_archive=unset])dnl
79
80 AC_ARG_WITH(mmap,
81 [ --with-mmap try using mmap for BFD input files if available],
82 [case "${withval}" in
83 yes) want_mmap=true ;;
84 no) want_mmap=false ;;
85 *) AC_MSG_ERROR(bad value ${withval} for BFD with-mmap option) ;;
86 esac],[want_mmap=false])dnl
87
88 AC_ARG_ENABLE(secureplt,
89 [ --enable-secureplt Default to creating read-only plt entries],
90 [case "${enableval}" in
91 yes) use_secureplt=true ;;
92 no) use_secureplt=false ;;
93 *) AC_MSG_ERROR(bad value ${enableval} for secureplt option) ;;
94 esac],[use_secureplt=true])dnl
95 if test $use_secureplt = true; then
96 AC_DEFINE(USE_SECUREPLT, 1,
97 [Define if we should default to creating read-only plt entries])
98 fi
99
100 # Decide if -z separate-code should be enabled in ELF linker by default.
101 ac_default_ld_z_separate_code=unset
102 AC_ARG_ENABLE(separate-code,
103 AS_HELP_STRING([--enable-separate-code],
104 [enable -z separate-code in ELF linker by default]),
105 [case "${enableval}" in
106 yes) ac_default_ld_z_separate_code=1 ;;
107 no) ac_default_ld_z_separate_code=0 ;;
108 esac])
109 # Enable -z separate-code by default for Linux/x86.
110 case "${target}" in
111 i[3-7]86-*-linux-* | x86_64-*-linux-*)
112 if test ${ac_default_ld_z_separate_code} = unset; then
113 ac_default_ld_z_separate_code=1
114 fi
115 ;;
116 esac
117 if test "${ac_default_ld_z_separate_code}" = unset; then
118 ac_default_ld_z_separate_code=0
119 fi
120 AC_DEFINE_UNQUOTED(DEFAULT_LD_Z_SEPARATE_CODE,
121 $ac_default_ld_z_separate_code,
122 [Define to 1 if you want to enable -z separate-code in ELF linker by default.])
123
124 AC_ARG_ENABLE(leading-mingw64-underscores,
125 AS_HELP_STRING([--enable-leading-mingw64-underscores],
126 [Enable leading underscores on 64 bit mingw targets]),
127 [],[])
128 AS_IF([ test x"$enable_leading_mingw64_underscores" = xyes ],
129 [AC_DEFINE(USE_MINGW64_LEADING_UNDERSCORES, 1,
130 [Define if we should use leading underscore on 64 bit mingw targets])])
131
132 DEBUGDIR=${libdir}/debug
133 AC_ARG_WITH(separate-debug-dir,
134 AS_HELP_STRING([--with-separate-debug-dir=DIR],
135 [Look for global separate debug info in DIR [[default=LIBDIR/debug]]]),
136 [DEBUGDIR="${withval}"])
137 AC_SUBST(DEBUGDIR)
138
139 ACX_PKGVERSION([GNU Binutils])
140 ACX_BUGURL([http://www.sourceware.org/bugzilla/])
141
142 AM_BINUTILS_WARNINGS
143
144 AC_CONFIG_HEADERS(config.h:config.in)
145
146 # PR 14072
147 AH_VERBATIM([00_CONFIG_H_CHECK],
148 [/* Check that config.h is #included before system headers
149 (this works only for glibc, but that should be enough). */
150 #if defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__CONFIG_H__)
151 # error config.h must be #included before system headers
152 #endif
153 #define __CONFIG_H__ 1])
154
155 if test -z "$target" ; then
156 AC_MSG_ERROR(Unrecognized target system type; please check config.sub.)
157 fi
158
159 AM_MAINTAINER_MODE
160 AM_CONDITIONAL(GENINSRC_NEVER, false)
161 AM_INSTALL_LIBBFD
162 AC_EXEEXT
163
164 host64=false
165 target64=false
166 bfd_default_target_size=32
167
168 # host stuff:
169
170 ALL_LINGUAS="da es fi fr hr id ja ro ru rw sr sv tr uk vi zh_CN"
171 ZW_GNU_GETTEXT_SISTER_DIR
172 AM_PO_SUBDIRS
173
174 # Permit host specific settings.
175 . ${srcdir}/configure.host
176
177 AC_SUBST(HDEFINES)
178 AC_PROG_INSTALL
179
180 BFD_HOST_64BIT_LONG=0
181 BFD_HOST_64BIT_LONG_LONG=0
182 BFD_HOST_64_BIT_DEFINED=0
183 BFD_HOST_64_BIT=
184 BFD_HOST_U_64_BIT=
185 BFD_HOSTPTR_T="unsigned long"
186
187 AC_TYPE_LONG_DOUBLE
188 AC_CHECK_TYPES([long long], [AC_CHECK_SIZEOF(long long)])
189 AC_CHECK_SIZEOF(void *)
190 AC_CHECK_SIZEOF(long)
191
192 if test "x${ac_cv_sizeof_void_p}" = "x8"; then
193 host64=true
194 fi
195
196 if test "x${ac_cv_sizeof_long}" = "x8"; then
197 BFD_HOST_64BIT_LONG=1
198 test -n "${HOST_64BIT_TYPE}" || HOST_64BIT_TYPE="long"
199 test -n "${HOST_U_64BIT_TYPE}" || HOST_U_64BIT_TYPE="unsigned long"
200 elif test "x${ac_cv_sizeof_long_long}" = "x8"; then
201 BFD_HOST_64BIT_LONG_LONG=1
202 test -n "${HOST_64BIT_TYPE}" || HOST_64BIT_TYPE="long long"
203 test -n "${HOST_U_64BIT_TYPE}" || HOST_U_64BIT_TYPE="unsigned long long"
204 if test "x${ac_cv_sizeof_void_p}" = "x8"; then
205 BFD_HOSTPTR_T="unsigned long long"
206 fi
207 fi
208
209 if test -n "${HOST_64BIT_TYPE}" -a -n "${HOST_U_64BIT_TYPE}"; then
210 BFD_HOST_64_BIT_DEFINED=1
211 BFD_HOST_64_BIT="${HOST_64BIT_TYPE}"
212 BFD_HOST_U_64_BIT="${HOST_U_64BIT_TYPE}"
213 fi
214
215 AC_SUBST(BFD_HOST_64BIT_LONG)
216 AC_SUBST(BFD_HOST_64BIT_LONG_LONG)
217 AC_SUBST(BFD_HOST_64_BIT_DEFINED)
218 AC_SUBST(BFD_HOST_64_BIT)
219 AC_SUBST(BFD_HOST_U_64_BIT)
220 AC_SUBST(BFD_HOSTPTR_T)
221
222 BFD_CC_FOR_BUILD
223
224 AC_CHECK_HEADERS(alloca.h stddef.h string.h strings.h stdlib.h time.h unistd.h wchar.h wctype.h)
225 AC_CHECK_HEADERS(fcntl.h sys/file.h sys/time.h sys/stat.h sys/resource.h)
226 GCC_HEADER_STDINT(bfd_stdint.h)
227 AC_HEADER_TIME
228 AC_HEADER_DIRENT
229
230 ACX_HEADER_STRING
231 AC_CHECK_FUNCS(fcntl getpagesize setitimer sysconf fdopen getuid getgid fileno)
232 AC_CHECK_FUNCS(strtoull getrlimit)
233
234 AC_CHECK_DECLS(basename)
235 AC_CHECK_DECLS(ftello)
236 AC_CHECK_DECLS(ftello64)
237 AC_CHECK_DECLS(fseeko)
238 AC_CHECK_DECLS(fseeko64)
239
240 BFD_BINARY_FOPEN
241
242 AC_CHECK_DECLS(ffs)
243 AC_CHECK_DECLS(free)
244 AC_CHECK_DECLS(getenv)
245 AC_CHECK_DECLS(malloc)
246 AC_CHECK_DECLS(realloc)
247 AC_CHECK_DECLS(stpcpy)
248 AC_CHECK_DECLS(strstr)
249 AC_CHECK_DECLS(asprintf)
250 AC_CHECK_DECLS(vasprintf)
251 AC_CHECK_DECLS(snprintf)
252 AC_CHECK_DECLS(vsnprintf)
253 AC_CHECK_DECLS(strnlen)
254
255 # Link in zlib if we can. This allows us to read compressed debug sections.
256 # This is used only by compress.c.
257 AM_ZLIB
258
259 # Check if linker supports --as-needed and --no-as-needed options
260 AC_CACHE_CHECK(linker --as-needed support, bfd_cv_ld_as_needed,
261 [bfd_cv_ld_as_needed=no
262 if $LD --help 2>/dev/null | grep as-needed > /dev/null; then
263 bfd_cv_ld_as_needed=yes
264 fi
265 ])
266
267 LT_LIB_M
268
269 # When building a shared libbfd, link against the pic version of libiberty
270 # so that apps that use libbfd won't need libiberty just to satisfy any
271 # libbfd references.
272 # We can't do that if a pic libiberty is unavailable since including non-pic
273 # code would insert text relocations into libbfd.
274 SHARED_LIBADD=
275 SHARED_LDFLAGS=
276 if test "$enable_shared" = "yes"; then
277 changequote(,)dnl
278 x=`sed -n -e 's/^[ ]*PICFLAG[ ]*=[ ]*//p' < ../libiberty/Makefile | sed -n '$p'`
279 changequote([,])dnl
280 if test -n "$x"; then
281 SHARED_LIBADD="-L`pwd`/../libiberty/pic -liberty"
282 fi
283
284 # More hacks to build DLLs on Windows.
285 case "${host}" in
286 *-*-cygwin*)
287 SHARED_LDFLAGS="-no-undefined"
288 SHARED_LIBADD="-L`pwd`/../libiberty -liberty -L`pwd`/../intl -lintl -lcygwin -lkernel32"
289 ;;
290
291 # Hack to build or1k-src on OSX
292 or1k*-*-darwin*)
293 SHARED_LIBADD="-L`pwd`/../libiberty/pic -L`pwd`/../intl -liberty -lintl"
294 ;;
295 esac
296
297 if test -n "$SHARED_LIBADD"; then
298 if test -n "$LIBM"; then
299 if test x"$bfd_cv_ld_as_needed" = xyes; then
300 # Link against libm only when needed. Put -lc, -lm inside -Wl
301 # to stop libtool reordering these options.
302 SHARED_LIBADD="$SHARED_LIBADD -Wl,-lc,--as-needed,`echo $LIBM | sed 's/ /,/g'`,--no-as-needed"
303 else
304 SHARED_LIBADD="$SHARED_LIBADD $LIBM"
305 fi
306 fi
307 fi
308 fi
309 AC_SUBST(SHARED_LDFLAGS)
310 AC_SUBST(SHARED_LIBADD)
311
312 # target stuff:
313
314 # Canonicalize the secondary target names.
315 if test -n "$enable_targets" ; then
316 for targ in `echo $enable_targets | sed 's/,/ /g'`
317 do
318 result=`$ac_config_sub $targ 2>/dev/null`
319 if test -n "$result" ; then
320 canon_targets="$canon_targets $result"
321 else
322 # Allow targets that config.sub doesn't recognize, like "all".
323 canon_targets="$canon_targets $targ"
324 fi
325 done
326 fi
327
328 all_targets=false
329 defvec=
330 selvecs=
331 assocvecs=
332 selarchs=
333 TDEFINES=
334 for targ in $target $canon_targets
335 do
336 if test "x$targ" = "xall"; then
337 all_targets=true
338 assocvecs="$assocvecs $targ_defvec $targ_selvecs"
339 else
340 . $srcdir/config.bfd
341 if test "x$targ" = "x$target"; then
342 defvec=$targ_defvec
343 fi
344 selvecs="$selvecs $targ_defvec $targ_selvecs"
345 selarchs="$selarchs $targ_archs"
346 TDEFINES="$TDEFINES $targ_cflags"
347 fi
348 done
349 AC_SUBST(TDEFINES)
350
351 # This processing still needs to be done if we're to decide properly whether
352 # 64-bit support needs to be compiled in. Currently, it will be included if
353 # the default or any other explicitly requested target requires it; it
354 # will not be included on a 32-bit host if no 64-bit target is requested, and
355 # no "--with-64-bit-bfd" option is given, even if "--enable-targets=all" is
356 # used.
357
358 # uniq the default and selected vectors in all the configured targets.
359 f=""
360 for i in $selvecs ; do
361 case " $f " in
362 *" $i "*) ;;
363 *) f="$f $i" ;;
364 esac
365 done
366 selvecs="$f"
367
368
369 # uniq the associated vectors in all the configured targets.
370 f=""
371 for i in $assocvecs ; do
372 case " $f " in
373 *" $i "*) ;;
374 *) f="$f $i" ;;
375 esac
376 done
377 assocvecs="$f"
378
379
380 # uniq the architectures in all the configured targets.
381 f=""
382 for i in $selarchs ; do
383 case " $f " in
384 *" $i "*) ;;
385 *) f="$f $i" ;;
386 esac
387 done
388 selarchs="$f"
389
390 # Target backend .o files.
391 tb=
392
393 elf="elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-properties.lo
394 elf-eh-frame.lo dwarf1.lo dwarf2.lo"
395 coffgen="coffgen.lo dwarf2.lo"
396 coff="cofflink.lo $coffgen"
397 ecoff="ecofflink.lo $coffgen"
398 xcoff="xcofflink.lo $coffgen"
399
400 for vec in $selvecs
401 do
402 target_size=32
403 case "$vec" in
404 # This list is alphabetized to make it easy to compare
405 # with the two vector lists in targets.c. For the same reason,
406 # use one entry per line, even though this leads to long lines.
407 aarch64_elf32_be_vec) tb="$tb elf32-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf32.lo $elf"; target_size=64 ;;
408 aarch64_elf32_le_vec) tb="$tb elf32-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf32.lo $elf"; target_size=64 ;;
409 aarch64_elf64_be_vec) tb="$tb elf64-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf64.lo $elf"; target_size=64 ;;
410 aarch64_elf64_be_cloudabi_vec) tb="$tb elf64-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf64.lo $elf"; target_size=64 ;;
411 aarch64_elf64_le_vec) tb="$tb elf64-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf64.lo $elf"; target_size=64 ;;
412 aarch64_elf64_le_cloudabi_vec) tb="$tb elf64-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf64.lo $elf"; target_size=64 ;;
413 aarch64_mach_o_vec) tb="$tb mach-o-aarch64.lo"; target_size=64 ;;
414 alpha_ecoff_le_vec) tb="$tb coff-alpha.lo ecoff.lo $ecoff"; target_size=64 ;;
415 alpha_elf64_vec) tb="$tb elf64-alpha.lo elf64.lo $elf"; target_size=64 ;;
416 alpha_elf64_fbsd_vec) tb="$tb elf64-alpha.lo elf64.lo $elf"; target_size=64 ;;
417 alpha_vms_vec) tb="$tb vms-alpha.lo vms-misc.lo vms-lib.lo"; target_size=64 ;;
418 alpha_vms_lib_txt_vec) tb="$tb vms-lib.lo vms-misc.lo" ;;
419 am33_elf32_linux_vec) tb="$tb elf32-am33lin.lo elf32.lo $elf" ;;
420 aout0_be_vec) tb="$tb aout0.lo aout32.lo" ;;
421 aout64_vec) tb="$tb demo64.lo aout64.lo"; target_size=64 ;;
422 aout_vec) tb="$tb host-aout.lo aout32.lo" ;;
423 arc_elf32_be_vec) tb="$tb elf32-arc.lo elf32.lo $elf" ;;
424 arc_elf32_le_vec) tb="$tb elf32-arc.lo elf32.lo $elf" ;;
425 arm_elf32_be_vec) tb="$tb elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo $elf" ;;
426 arm_elf32_le_vec) tb="$tb elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo $elf" ;;
427 arm_elf32_fdpic_be_vec) tb="$tb elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo $elf" ;;
428 arm_elf32_fdpic_le_vec) tb="$tb elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo $elf" ;;
429 arm_elf32_nacl_be_vec) tb="$tb elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo $elf" ;;
430 arm_elf32_nacl_le_vec) tb="$tb elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo $elf" ;;
431 arm_elf32_symbian_be_vec) tb="$tb elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo $elf" ;;
432 arm_elf32_symbian_le_vec) tb="$tb elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo $elf" ;;
433 arm_elf32_vxworks_be_vec) tb="$tb elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo $elf" ;;
434 arm_elf32_vxworks_le_vec) tb="$tb elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo $elf" ;;
435 arm_pe_be_vec) tb="$tb pe-arm.lo peigen.lo $coff" ;;
436 arm_pe_le_vec) tb="$tb pe-arm.lo peigen.lo $coff" ;;
437 arm_pe_wince_be_vec) tb="$tb pe-arm-wince.lo pe-arm.lo peigen.lo $coff" ;;
438 arm_pe_wince_le_vec) tb="$tb pe-arm-wince.lo pe-arm.lo peigen.lo $coff" ;;
439 arm_pei_be_vec) tb="$tb pei-arm.lo peigen.lo $coff" ;;
440 arm_pei_le_vec) tb="$tb pei-arm.lo peigen.lo $coff" ;;
441 arm_pei_wince_be_vec) tb="$tb pei-arm-wince.lo pei-arm.lo peigen.lo $coff" ;;
442 arm_pei_wince_le_vec) tb="$tb pei-arm-wince.lo pei-arm.lo peigen.lo $coff" ;;
443 arm_mach_o_vec) tb="$tb mach-o-arm.lo" ;;
444 avr_elf32_vec) tb="$tb elf32-avr.lo elf32.lo $elf" ;;
445 bfin_elf32_vec) tb="$tb elf32-bfin.lo elf32.lo $elf" ;;
446 bfin_elf32_fdpic_vec) tb="$tb elf32-bfin.lo elf32.lo $elf" ;;
447 cr16_elf32_vec) tb="$tb elf32-cr16.lo elf32.lo $elf" ;;
448 cr16c_elf32_vec) tb="$tb elf32-cr16c.lo elf32.lo $elf" ;;
449 cris_aout_vec) tb="$tb aout-cris.lo" ;;
450 cris_elf32_vec) tb="$tb elf32-cris.lo elf32.lo $elf" ;;
451 cris_elf32_us_vec) tb="$tb elf32-cris.lo elf32.lo $elf" ;;
452 crx_elf32_vec) tb="$tb elf32-crx.lo elf32.lo $elf" ;;
453 d10v_elf32_vec) tb="$tb elf32-d10v.lo elf32.lo $elf" ;;
454 d30v_elf32_vec) tb="$tb elf32-d30v.lo elf32.lo $elf" ;;
455 dlx_elf32_be_vec) tb="$tb elf32-dlx.lo elf32.lo $elf" ;;
456 elf32_be_vec) tb="$tb elf32-gen.lo elf32.lo $elf" ;;
457 elf32_le_vec) tb="$tb elf32-gen.lo elf32.lo $elf" ;;
458 elf64_be_vec) tb="$tb elf64-gen.lo elf64.lo $elf"; target_size=64 ;;
459 elf64_le_vec) tb="$tb elf64-gen.lo elf64.lo $elf"; target_size=64 ;;
460 epiphany_elf32_vec) tb="$tb elf32-epiphany.lo elf32.lo $elf" ;;
461 fr30_elf32_vec) tb="$tb elf32-fr30.lo elf32.lo $elf" ;;
462 frv_elf32_vec) tb="$tb elf32-frv.lo elf32.lo $elf" ;;
463 frv_elf32_fdpic_vec) tb="$tb elf32-frv.lo elf32.lo $elf" ;;
464 h8300_elf32_vec) tb="$tb elf32-h8300.lo elf32.lo $elf" ;;
465 h8300_elf32_linux_vec) tb="$tb elf32-h8300.lo elf32.lo $elf" ;;
466 hppa_elf32_vec) tb="$tb elf32-hppa.lo elf32.lo $elf" ;;
467 hppa_elf32_linux_vec) tb="$tb elf32-hppa.lo elf32.lo $elf" ;;
468 hppa_elf32_nbsd_vec) tb="$tb elf32-hppa.lo elf32.lo $elf" ;;
469 hppa_elf64_vec) tb="$tb elf64-hppa.lo elf64.lo $elf"; target_size=64 ;;
470 hppa_elf64_linux_vec) tb="$tb elf64-hppa.lo elf64.lo $elf"; target_size=64 ;;
471 hppa_som_vec) tb="$tb som.lo" ;;
472 i386_aout_vec) tb="$tb i386aout.lo aout32.lo" ;;
473 i386_aout_bsd_vec) tb="$tb i386bsd.lo aout32.lo" ;;
474 i386_aout_lynx_vec) tb="$tb i386lynx.lo lynx-core.lo aout32.lo" ;;
475 i386_coff_vec) tb="$tb coff-i386.lo $coff" ;;
476 i386_coff_go32_vec) tb="$tb coff-go32.lo $coff" ;;
477 i386_coff_go32stubbed_vec) tb="$tb coff-stgo32.lo $coff" ;;
478 i386_coff_lynx_vec) tb="$tb cf-i386lynx.lo lynx-core.lo $coff" ;;
479 i386_elf32_vec) tb="$tb elf32-i386.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf-vxworks.lo elf32.lo $elf" ;;
480 i386_elf32_fbsd_vec) tb="$tb elf32-i386.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf-vxworks.lo elf32.lo $elf" ;;
481 i386_elf32_nacl_vec) tb="$tb elf32-i386.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf-vxworks.lo elf32.lo $elf" ;;
482 i386_elf32_sol2_vec) tb="$tb elf32-i386.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf-vxworks.lo elf32.lo $elf" ;;
483 i386_elf32_vxworks_vec) tb="$tb elf32-i386.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf-vxworks.lo elf32.lo $elf" ;;
484 i386_mach_o_vec) tb="$tb mach-o-i386.lo" ;;
485 i386_msdos_vec) tb="$tb i386msdos.lo" ;;
486 i386_pe_vec) tb="$tb pe-i386.lo peigen.lo $coff" ;;
487 i386_pei_vec) tb="$tb pei-i386.lo peigen.lo $coff" ;;
488 iamcu_elf32_vec) tb="$tb elf32-i386.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf-vxworks.lo elf32.lo $elf" ;;
489 ia64_elf32_be_vec) tb="$tb elf32-ia64.lo elfxx-ia64.lo elf32.lo $elf" ;;
490 ia64_elf32_hpux_be_vec) tb="$tb elf32-ia64.lo elfxx-ia64.lo elf32.lo $elf" ;;
491 ia64_elf64_be_vec) tb="$tb elf64-ia64.lo elfxx-ia64.lo elf64.lo $elf"; target_size=64 ;;
492 ia64_elf64_le_vec) tb="$tb elf64-ia64.lo elfxx-ia64.lo elf64.lo $elf"; target_size=64 ;;
493 ia64_elf64_hpux_be_vec) tb="$tb elf64-ia64.lo elfxx-ia64.lo elf64.lo $elf"; target_size=64 ;;
494 ia64_elf64_vms_vec) tb="$tb elf64-ia64-vms.lo elf64-ia64.lo elfxx-ia64.lo elf64.lo vms-lib.lo vms-misc.lo $elf"; target_size=64 ;;
495 ia64_pei_vec) tb="$tb pei-ia64.lo pepigen.lo $coff"; target_size=64 ;;
496 ip2k_elf32_vec) tb="$tb elf32-ip2k.lo elf32.lo $elf" ;;
497 iq2000_elf32_vec) tb="$tb elf32-iq2000.lo elf32.lo $elf" ;;
498 k1om_elf64_vec) tb="$tb elf64-x86-64.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf64.lo $elf"; target_size=64 ;;
499 k1om_elf64_fbsd_vec) tb="$tb elf64-x86-64.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf64.lo $elf"; target_size=64 ;;
500 l1om_elf64_vec) tb="$tb elf64-x86-64.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf64.lo $elf"; target_size=64 ;;
501 l1om_elf64_fbsd_vec) tb="$tb elf64-x86-64.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf64.lo $elf"; target_size=64 ;;
502 lm32_elf32_vec) tb="$tb elf32-lm32.lo elf32.lo $elf" ;;
503 lm32_elf32_fdpic_vec) tb="$tb elf32-lm32.lo elf32.lo $elf" ;;
504 m32c_elf32_vec) tb="$tb elf32-m32c.lo elf32.lo $elf" ;;
505 m32r_elf32_vec) tb="$tb elf32-m32r.lo elf32.lo $elf" ;;
506 m32r_elf32_le_vec) tb="$tb elf32-m32r.lo elf32.lo $elf" ;;
507 m32r_elf32_linux_vec) tb="$tb elf32-m32r.lo elf32.lo $elf" ;;
508 m32r_elf32_linux_le_vec) tb="$tb elf32-m32r.lo elf32.lo $elf" ;;
509 m68hc11_elf32_vec) tb="$tb elf32-m68hc11.lo elf32-m68hc1x.lo elf32.lo $elf" ;;
510 m68hc12_elf32_vec) tb="$tb elf32-m68hc12.lo elf32-m68hc1x.lo elf32.lo $elf" ;;
511 m68k_elf32_vec) tb="$tb elf32-m68k.lo elf32.lo $elf" ;;
512 mach_o_be_vec) tb="$tb mach-o.lo dwarf2.lo" ;;
513 mach_o_le_vec) tb="$tb mach-o.lo dwarf2.lo" ;;
514 mach_o_fat_vec) tb="$tb mach-o.lo dwarf2.lo" ;;
515 mcore_elf32_be_vec) tb="$tb elf32-mcore.lo elf32.lo $elf" ;;
516 mcore_elf32_le_vec) tb="$tb elf32-mcore.lo elf32.lo $elf" ;;
517 mcore_pe_be_vec) tb="$tb pe-mcore.lo peigen.lo $coff" ;;
518 mcore_pe_le_vec) tb="$tb pe-mcore.lo peigen.lo $coff" ;;
519 mcore_pei_be_vec) tb="$tb pei-mcore.lo peigen.lo $coff" ;;
520 mcore_pei_le_vec) tb="$tb pei-mcore.lo peigen.lo $coff" ;;
521 mep_elf32_vec) tb="$tb elf32-mep.lo elf32.lo $elf" ;;
522 mep_elf32_le_vec) tb="$tb elf32-mep.lo elf32.lo $elf" ;;
523 metag_elf32_vec) tb="$tb elf32-metag.lo elf32.lo $elf" ;;
524 microblaze_elf32_vec) tb="$tb elf32-microblaze.lo elf32.lo $elf" ;;
525 microblaze_elf32_le_vec) tb="$tb elf32-microblaze.lo elf32.lo $elf" ;;
526 mips_ecoff_be_vec) tb="$tb coff-mips.lo ecoff.lo $ecoff" ;;
527 mips_ecoff_le_vec) tb="$tb coff-mips.lo ecoff.lo $ecoff" ;;
528 mips_ecoff_bele_vec) tb="$tb coff-mips.lo ecoff.lo $ecoff" ;;
529 mips_elf32_be_vec) tb="$tb elf32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff" ;;
530 mips_elf32_le_vec) tb="$tb elf32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff" ;;
531 mips_elf32_n_be_vec) tb="$tb elfn32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff"; target_size=64 ;;
532 mips_elf32_n_le_vec) tb="$tb elfn32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff"; target_size=64 ;;
533 mips_elf32_ntrad_be_vec) tb="$tb elfn32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff"; target_size=64 ;;
534 mips_elf32_ntrad_le_vec) tb="$tb elfn32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff"; target_size=64 ;;
535 mips_elf32_ntradfbsd_be_vec) tb="$tb elfn32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff"; target_size=64 ;;
536 mips_elf32_ntradfbsd_le_vec) tb="$tb elfn32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff"; target_size=64 ;;
537 mips_elf32_trad_be_vec) tb="$tb elf32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff" ;;
538 mips_elf32_trad_le_vec) tb="$tb elf32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff" ;;
539 mips_elf32_tradfbsd_be_vec) tb="$tb elf32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff" ;;
540 mips_elf32_tradfbsd_le_vec) tb="$tb elf32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff" ;;
541 mips_elf32_vxworks_be_vec) tb="$tb elf32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff" ;;
542 mips_elf32_vxworks_le_vec) tb="$tb elf32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff" ;;
543 mips_elf64_be_vec) tb="$tb elf64-mips.lo elf64.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff"; target_size=64 ;;
544 mips_elf64_le_vec) tb="$tb elf64-mips.lo elf64.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff"; target_size=64 ;;
545 mips_elf64_trad_be_vec) tb="$tb elf64-mips.lo elf64.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff"; target_size=64 ;;
546 mips_elf64_trad_le_vec) tb="$tb elf64-mips.lo elf64.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff"; target_size=64 ;;
547 mips_elf64_tradfbsd_be_vec) tb="$tb elf64-mips.lo elf64.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff"; target_size=64 ;;
548 mips_elf64_tradfbsd_le_vec) tb="$tb elf64-mips.lo elf64.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff"; target_size=64 ;;
549 mmix_elf64_vec) tb="$tb elf64-mmix.lo elf64.lo $elf" target_size=64 ;;
550 mmix_mmo_vec) tb="$tb mmo.lo" target_size=64 ;;
551 mn10200_elf32_vec) tb="$tb elf-m10200.lo elf32.lo $elf" ;;
552 mn10300_elf32_vec) tb="$tb elf-m10300.lo elf32.lo $elf" ;;
553 moxie_elf32_be_vec) tb="$tb elf32-moxie.lo elf32.lo $elf" ;;
554 moxie_elf32_le_vec) tb="$tb elf32-moxie.lo elf32.lo $elf" ;;
555 msp430_elf32_vec) tb="$tb elf32-msp430.lo elf32.lo $elf" ;;
556 msp430_elf32_ti_vec) tb="$tb elf32-msp430.lo elf32.lo $elf" ;;
557 mt_elf32_vec) tb="$tb elf32-mt.lo elf32.lo $elf" ;;
558 nds32_elf32_be_vec) tb="$tb elf32-nds32.lo elf32.lo $elf" ;;
559 nds32_elf32_le_vec) tb="$tb elf32-nds32.lo elf32.lo $elf" ;;
560 nds32_elf32_linux_be_vec) tb="$tb elf32-nds32.lo elf32.lo $elf" ;;
561 nds32_elf32_linux_le_vec) tb="$tb elf32-nds32.lo elf32.lo $elf" ;;
562 nios2_elf32_be_vec) tb="$tb elf32-nios2.lo elf32.lo $elf" ;;
563 nios2_elf32_le_vec) tb="$tb elf32-nios2.lo elf32.lo $elf" ;;
564 ns32k_aout_pc532mach_vec) tb="$tb pc532-mach.lo aout-ns32k.lo" ;;
565 ns32k_aout_pc532nbsd_vec) tb="$tb ns32knetbsd.lo aout-ns32k.lo" ;;
566 or1k_elf32_vec) tb="$tb elf32-or1k.lo elf32.lo $elf" ;;
567 pdp11_aout_vec) tb="$tb pdp11.lo" ;;
568 pef_vec) tb="$tb pef.lo" ;;
569 pef_xlib_vec) tb="$tb pef.lo" ;;
570 pj_elf32_vec) tb="$tb elf32-pj.lo elf32.lo $elf" ;;
571 pj_elf32_le_vec) tb="$tb elf32-pj.lo elf32.lo $elf" ;;
572 plugin_vec) tb="$tb plugin.lo" ;;
573 powerpc_boot_vec) tb="$tb ppcboot.lo" ;;
574 powerpc_elf32_vec) tb="$tb elf32-ppc.lo elf-vxworks.lo elf32.lo $elf" ;;
575 powerpc_elf32_le_vec) tb="$tb elf32-ppc.lo elf-vxworks.lo elf32.lo $elf" ;;
576 powerpc_elf32_fbsd_vec) tb="$tb elf32-ppc.lo elf-vxworks.lo elf32.lo $elf" ;;
577 powerpc_elf32_vxworks_vec) tb="$tb elf32-ppc.lo elf-vxworks.lo elf32.lo $elf" ;;
578 powerpc_elf64_vec) tb="$tb elf64-ppc.lo elf64-gen.lo elf64.lo $elf"; target_size=64 ;;
579 powerpc_elf64_le_vec) tb="$tb elf64-ppc.lo elf64-gen.lo elf64.lo $elf" target_size=64 ;;
580 powerpc_elf64_fbsd_vec) tb="$tb elf64-ppc.lo elf64-gen.lo elf64.lo $elf" target_size=64 ;;
581 powerpc_pe_vec) tb="$tb pe-ppc.lo peigen.lo $coff" ;;
582 powerpc_pe_le_vec) tb="$tb pe-ppc.lo peigen.lo $coff" ;;
583 powerpc_pei_vec) tb="$tb pei-ppc.lo peigen.lo $coff" ;;
584 powerpc_pei_le_vec) tb="$tb pei-ppc.lo peigen.lo $coff" ;;
585 powerpc_xcoff_vec) tb="$tb coff-rs6000.lo $xcoff" ;;
586 pru_elf32_vec) tb="$tb elf32-pru.lo elf32.lo $elf" ;;
587 riscv_elf32_vec) tb="$tb elf32-riscv.lo elfxx-riscv.lo elf32.lo $elf" ;;
588 riscv_elf64_vec) tb="$tb elf64-riscv.lo elf64.lo elfxx-riscv.lo elf32.lo $elf"; target_size=64 ;;
589 rl78_elf32_vec) tb="$tb elf32-rl78.lo elf32.lo $elf" ;;
590 rs6000_xcoff64_vec) tb="$tb coff64-rs6000.lo aix5ppc-core.lo $xcoff"; target_size=64 ;;
591 rs6000_xcoff64_aix_vec) tb="$tb coff64-rs6000.lo aix5ppc-core.lo $xcoff"; target_size=64 ;;
592 rs6000_xcoff_vec) tb="$tb coff-rs6000.lo $xcoff" ;;
593 rx_elf32_be_vec) tb="$tb elf32-rx.lo elf32.lo $elf" ;;
594 rx_elf32_be_ns_vec) tb="$tb elf32-rx.lo elf32.lo $elf" ;;
595 rx_elf32_le_vec) tb="$tb elf32-rx.lo elf32.lo $elf" ;;
596 s390_elf32_vec) tb="$tb elf32-s390.lo elf32.lo $elf" ;;
597 s390_elf64_vec) tb="$tb elf64-s390.lo elf64.lo $elf"; target_size=64 ;;
598 score_elf32_be_vec) tb="$tb elf32-score.lo elf32-score7.lo elf32.lo $elf"; want64=true; target_size=64 ;;
599 score_elf32_le_vec) tb="$tb elf32-score.lo elf32-score7.lo elf32.lo $elf"; want64=true; target_size=64 ;;
600 sh_coff_vec) tb="$tb coff-sh.lo $coff" ;;
601 sh_coff_le_vec) tb="$tb coff-sh.lo $coff" ;;
602 sh_coff_small_vec) tb="$tb coff-sh.lo $coff" ;;
603 sh_coff_small_le_vec) tb="$tb coff-sh.lo $coff" ;;
604 sh_elf32_vec) tb="$tb elf32-sh.lo elf-vxworks.lo elf32.lo $elf coff-sh.lo $coff" ;;
605 sh_elf32_le_vec) tb="$tb elf32-sh.lo elf-vxworks.lo elf32.lo $elf coff-sh.lo $coff" ;;
606 sh_elf32_fdpic_be_vec) tb="$tb elf32-sh.lo elf-vxworks.lo elf32.lo $elf coff-sh.lo $coff" ;;
607 sh_elf32_fdpic_le_vec) tb="$tb elf32-sh.lo elf-vxworks.lo elf32.lo $elf coff-sh.lo $coff" ;;
608 sh_elf32_linux_vec) tb="$tb elf32-sh.lo elf-vxworks.lo elf32.lo $elf coff-sh.lo $coff" ;;
609 sh_elf32_linux_be_vec) tb="$tb elf32-sh.lo elf-vxworks.lo elf32.lo $elf coff-sh.lo $coff" ;;
610 sh_elf32_nbsd_vec) tb="$tb elf32-sh.lo elf-vxworks.lo elf32.lo $elf coff-sh.lo $coff" ;;
611 sh_elf32_nbsd_le_vec) tb="$tb elf32-sh.lo elf-vxworks.lo elf32.lo $elf coff-sh.lo $coff" ;;
612 sh_elf32_vxworks_vec) tb="$tb elf32-sh.lo elf-vxworks.lo elf32.lo $elf coff-sh.lo $coff" ;;
613 sh_elf32_vxworks_le_vec) tb="$tb elf32-sh.lo elf-vxworks.lo elf32.lo $elf coff-sh.lo $coff" ;;
614 sh_pe_le_vec) tb="$tb pe-sh.lo coff-sh.lo peigen.lo $coff" ;;
615 sh_pei_le_vec) tb="$tb pei-sh.lo coff-sh.lo peigen.lo $coff" ;;
616 sparc_elf32_vec) tb="$tb elf32-sparc.lo elfxx-sparc.lo elf-vxworks.lo elf32.lo $elf" ;;
617 sparc_elf32_sol2_vec) tb="$tb elf32-sparc.lo elfxx-sparc.lo elf-vxworks.lo elf32.lo $elf" ;;
618 sparc_elf32_vxworks_vec) tb="$tb elf32-sparc.lo elfxx-sparc.lo elf-vxworks.lo elf32.lo $elf" ;;
619 sparc_elf64_vec) tb="$tb elf64-sparc.lo elfxx-sparc.lo elf-vxworks.lo elf64.lo $elf"; target_size=64 ;;
620 sparc_elf64_fbsd_vec) tb="$tb elf64-sparc.lo elfxx-sparc.lo elf-vxworks.lo elf64.lo $elf"; target_size=64 ;;
621 sparc_elf64_sol2_vec) tb="$tb elf64-sparc.lo elfxx-sparc.lo elf-vxworks.lo elf64.lo $elf"; target_size=64 ;;
622 spu_elf32_vec) tb="$tb elf32-spu.lo elf32.lo $elf" ;;
623 sym_vec) tb="$tb xsym.lo" ;;
624 tic30_aout_vec) tb="$tb aout-tic30.lo" ;;
625 tic30_coff_vec) tb="$tb coff-tic30.lo $coffgen" ;;
626 tic4x_coff0_vec) tb="$tb coff-tic4x.lo $coffgen" ;;
627 tic4x_coff0_beh_vec) tb="$tb coff-tic4x.lo $coffgen" ;;
628 tic4x_coff1_vec) tb="$tb coff-tic4x.lo $coffgen" ;;
629 tic4x_coff1_beh_vec) tb="$tb coff-tic4x.lo $coffgen" ;;
630 tic4x_coff2_vec) tb="$tb coff-tic4x.lo $coffgen" ;;
631 tic4x_coff2_beh_vec) tb="$tb coff-tic4x.lo $coffgen" ;;
632 tic54x_coff0_vec) tb="$tb coff-tic54x.lo $coffgen" ;;
633 tic54x_coff0_beh_vec) tb="$tb coff-tic54x.lo $coffgen" ;;
634 tic54x_coff1_vec) tb="$tb coff-tic54x.lo $coffgen" ;;
635 tic54x_coff1_beh_vec) tb="$tb coff-tic54x.lo $coffgen" ;;
636 tic54x_coff2_vec) tb="$tb coff-tic54x.lo $coffgen" ;;
637 tic54x_coff2_beh_vec) tb="$tb coff-tic54x.lo $coffgen" ;;
638 tic6x_elf32_be_vec) tb="$tb elf32-tic6x.lo elf32.lo $elf" ;;
639 tic6x_elf32_le_vec) tb="$tb elf32-tic6x.lo elf32.lo $elf" ;;
640 tic6x_elf32_c6000_be_vec) tb="$tb elf32-tic6x.lo elf32.lo $elf" ;;
641 tic6x_elf32_c6000_le_vec) tb="$tb elf32-tic6x.lo elf32.lo $elf" ;;
642 tic6x_elf32_linux_be_vec) tb="$tb elf32-tic6x.lo elf32.lo $elf" ;;
643 tic6x_elf32_linux_le_vec) tb="$tb elf32-tic6x.lo elf32.lo $elf" ;;
644 tic80_coff_vec) tb="$tb coff-tic80.lo $coff" ;;
645 tilegx_elf32_be_vec) tb="$tb elf32-tilegx.lo elfxx-tilegx.lo elf32.lo $elf" ; target_size=32 ;;
646 tilegx_elf32_le_vec) tb="$tb elf32-tilegx.lo elfxx-tilegx.lo elf32.lo $elf" ; target_size=32 ;;
647 tilegx_elf64_be_vec) tb="$tb elf64-tilegx.lo elfxx-tilegx.lo elf64.lo $elf" ; target_size=64 ;;
648 tilegx_elf64_le_vec) tb="$tb elf64-tilegx.lo elfxx-tilegx.lo elf64.lo $elf" ; target_size=64 ;;
649 tilepro_elf32_vec) tb="$tb elf32-tilepro.lo elf32.lo $elf" ;;
650 v800_elf32_vec) tb="$tb elf32-v850.lo elf32.lo $elf" ;;
651 v850_elf32_vec) tb="$tb elf32-v850.lo elf32.lo $elf" ;;
652 vax_aout_1knbsd_vec) tb="$tb vax1knetbsd.lo aout32.lo" ;;
653 vax_aout_nbsd_vec) tb="$tb vaxnetbsd.lo aout32.lo" ;;
654 vax_elf32_vec) tb="$tb elf32-vax.lo elf32.lo $elf" ;;
655 ft32_elf32_vec) tb="$tb elf32-ft32.lo elf32.lo $elf" ;;
656 visium_elf32_vec) tb="$tb elf32-visium.lo elf32.lo $elf" ;;
657 wasm_vec) tb="$tb wasm-module.lo" ;;
658 wasm32_elf32_vec) tb="$tb elf32-wasm32.lo elf32.lo $elf" ;;
659 x86_64_coff_vec) tb="$tb coff-x86_64.lo $coff"; target_size=64 ;;
660 x86_64_elf32_vec) tb="$tb elf64-x86-64.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf64.lo elf32.lo $elf"; target_size=64 ;;
661 x86_64_elf32_nacl_vec) tb="$tb elf64-x86-64.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf64.lo elf32.lo $elf"; target_size=64 ;;
662 x86_64_elf64_vec) tb="$tb elf64-x86-64.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf64.lo $elf"; target_size=64 ;;
663 x86_64_elf64_cloudabi_vec) tb="$tb elf64-x86-64.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf64.lo $elf"; target_size=64 ;;
664 x86_64_elf64_fbsd_vec) tb="$tb elf64-x86-64.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf64.lo $elf"; target_size=64 ;;
665 x86_64_elf64_nacl_vec) tb="$tb elf64-x86-64.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf64.lo $elf"; target_size=64 ;;
666 x86_64_elf64_sol2_vec) tb="$tb elf64-x86-64.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf64.lo $elf"; target_size=64 ;;
667 x86_64_mach_o_vec) tb="$tb mach-o-x86-64.lo" ;;
668 x86_64_pe_vec) tb="$tb pe-x86_64.lo pex64igen.lo $coff"; target_size=64 ;;
669 x86_64_pe_be_vec) tb="$tb pe-x86_64.lo pex64igen.lo $coff"; target_size=64 ;;
670 x86_64_pei_vec) tb="$tb pei-x86_64.lo pex64igen.lo $coff"; target_size=64 ;;
671 xc16x_elf32_vec) tb="$tb elf32-xc16x.lo elf32.lo $elf" ;;
672 xgate_elf32_vec) tb="$tb elf32-xgate.lo elf32.lo $elf" ;;
673 xstormy16_elf32_vec) tb="$tb elf32-xstormy16.lo elf32.lo $elf" ;;
674 xtensa_elf32_be_vec) tb="$tb xtensa-isa.lo xtensa-modules.lo elf32-xtensa.lo elf32.lo $elf" ;;
675 xtensa_elf32_le_vec) tb="$tb xtensa-isa.lo xtensa-modules.lo elf32-xtensa.lo elf32.lo $elf" ;;
676 z80_coff_vec) tb="$tb coff-z80.lo reloc16.lo $coffgen" ;;
677 z8k_coff_vec) tb="$tb coff-z8k.lo reloc16.lo $coff" ;;
678
679 # These appear out of order in targets.c
680 srec_vec) tb="$tb srec.lo" ;;
681 symbolsrec_vec) tb="$tb srec.lo" ;;
682 tekhex_vec) tb="$tb tekhex.lo" ;;
683 core_cisco_be_vec) tb="$tb cisco-core.lo" ;;
684 core_cisco_le_vec) tb="$tb cisco-core.lo" ;;
685
686 "") ;;
687 *) AC_MSG_ERROR(*** unknown target vector $vec) ;;
688 esac
689
690 if test ${target_size} = 64; then
691 target64=true
692 fi
693 if test x"${vec}" = x"${defvec}"; then
694 bfd_default_target_size=${target_size}
695 fi
696 done
697
698 # Target architecture .o files.
699 # A couple of CPUs use shorter file names to avoid problems on DOS
700 # filesystems.
701 ta=`echo $selarchs | sed -e s/bfd_/cpu-/g -e s/_arch/.lo/g -e s/mn10200/m10200/ -e s/mn10300/m10300/`
702
703 # Weed out duplicate .o files.
704 f=""
705 for i in $tb ; do
706 case " $f " in
707 *" $i "*) ;;
708 *) f="$f $i" ;;
709 esac
710 done
711 tb="$f"
712
713 f=""
714 for i in $ta ; do
715 case " $f " in
716 *" $i "*) ;;
717 *) f="$f $i" ;;
718 esac
719 done
720 ta="$f"
721
722 bfd_backends="$tb"
723 bfd_machines="$ta"
724
725 if test x${all_targets} = xtrue ; then
726 bfd_backends="${bfd_backends}"' $(ALL_BACKENDS)'
727 bfd_machines="${bfd_machines}"' $(ALL_MACHINES)'
728 selvecs=
729 havevecs=-DHAVE_all_vecs
730 selarchs=
731 test -n "$assocvecs" &&
732 assocvecs=`echo $assocvecs | sed -e 's/^/\&/' -e 's/ \(.\)/,\&\1/g'`
733 else # all_targets is true
734 # Only set these if they will be nonempty, for the clever echo.
735 havevecs=
736 assocvecs=
737 test -n "$selvecs" &&
738 havevecs=`echo $selvecs | sed -e 's/^/-DHAVE_/' -e 's/ \(.\)/ -DHAVE_\1/g'`
739 test -n "$selvecs" &&
740 selvecs=`echo $selvecs | sed -e 's/^/\&/' -e 's/ \(.\)/,\&\1/g'`
741 test -n "$selarchs" &&
742 selarchs=`echo $selarchs | sed -e 's/^/\&/' -e 's/ \(.\)/,\&\1/g'`
743 fi # all_targets is true
744
745 # 64-bit archives need a 64-bit bfd_vma.
746 if test "x$want_64_bit_archive" = xtrue; then
747 want64=true
748 AC_DEFINE(USE_64_BIT_ARCHIVE, 1,
749 [Define if 64-bit archives should always be used.])
750 fi
751
752 case ${host64}-${target64}-${want64} in
753 *true*)
754 wordsize=64
755 bfd64_libs='$(BFD64_LIBS)'
756 all_backends='$(BFD64_BACKENDS) $(BFD32_BACKENDS)'
757 if test $BFD_HOST_64_BIT_DEFINED = 0; then
758 AC_MSG_WARN([You have requested a 64 bit BFD configuration, but])
759 AC_MSG_WARN([your compiler may not have a 64 bit integral type])
760 fi
761 if test -n "$GCC" ; then
762 bad_64bit_gcc=no;
763 AC_MSG_CHECKING([for gcc version with buggy 64-bit support])
764 # Add more tests for gcc versions with non-working 64-bit support here.
765 AC_EGREP_CPP([: 2 : 91 : 1 :],[:__GNUC__:__GNUC_MINOR__:__i386__:],
766 bad_64bit_gcc=yes;
767 AC_MSG_RESULT([yes: egcs-1.1.2 on ix86 spotted]),
768 AC_MSG_RESULT(no))
769 if test $bad_64bit_gcc = yes ; then
770 AC_MSG_ERROR([A newer version of gcc is needed for the requested 64-bit BFD configuration])
771 fi
772 fi
773 ;;
774 false-false-false)
775 wordsize=32
776 all_backends='$(BFD32_BACKENDS)'
777 ;;
778 esac
779
780 tdefaults=""
781 test -n "${defvec}" && tdefaults="${tdefaults} -DDEFAULT_VECTOR=${defvec}"
782 test -n "${selvecs}" && tdefaults="${tdefaults} -DSELECT_VECS='${selvecs}'"
783 test -n "${assocvecs}" && tdefaults="${tdefaults} -DASSOCIATED_VECS='${assocvecs}'"
784 test -n "${selarchs}" && tdefaults="${tdefaults} -DSELECT_ARCHITECTURES='${selarchs}'"
785
786 AC_SUBST(wordsize)
787 AC_SUBST(bfd64_libs)
788 AC_SUBST(all_backends)
789 AC_SUBST(bfd_backends)
790 AC_SUBST(bfd_machines)
791 AC_SUBST(bfd_default_target_size)
792 AC_SUBST(tdefaults)
793 AC_SUBST(havevecs)
794
795 # If we are configured native, pick a core file support file.
796 COREFILE=
797 COREFLAG=
798 CORE_HEADER=
799 TRAD_HEADER=
800 if test "${target}" = "${host}"; then
801 case "${host}" in
802 alpha*-*-freebsd* | alpha*-*-kfreebsd*-gnu | alpha*-*-*vms*)
803 COREFILE=''
804 ;;
805 alpha*-*-linux-*)
806 COREFILE=trad-core.lo
807 TRAD_HEADER='"hosts/alphalinux.h"'
808 ;;
809 alpha*-*-netbsd* | alpha*-*-openbsd*)
810 COREFILE=netbsd-core.lo
811 ;;
812 alpha*-*-*)
813 COREFILE=osf-core.lo
814 ;;
815 arm-*-freebsd* | arm-*-kfreebsd*-gnu)
816 COREFILE='' ;;
817 arm-*-netbsd* | arm-*-openbsd*)
818 COREFILE=netbsd-core.lo
819 ;;
820 arm-*-riscix) COREFILE=trad-core.lo ;;
821 hppa*-*-hpux*) COREFILE=hpux-core.lo ;;
822 hppa*-*-hiux*) COREFILE=hpux-core.lo ;;
823 hppa*-*-mpeix*) COREFILE=hpux-core.lo ;;
824 hppa*-*-bsd*) COREFILE="hpux-core.lo hppabsd-core.lo"
825 COREFLAG="-DHPUX_CORE -DHPPABSD_CORE" ;;
826 hppa*-*-netbsd* | hppa*-*-openbsd*)
827 COREFILE=netbsd-core.lo
828 ;;
829
830 changequote(,)dnl
831 i[3-7]86-sequent-bsd*)
832 changequote([,])dnl
833 COREFILE=trad-core.lo
834 TRAD_HEADER='"hosts/symmetry.h"'
835 ;;
836 changequote(,)dnl
837 i[3-7]86-sequent-sysv4*) ;;
838 i[3-7]86-sequent-sysv*)
839 changequote([,])dnl
840 COREFILE=trad-core.lo
841 TRAD_HEADER='"hosts/symmetry.h"'
842 ;;
843 changequote(,)dnl
844 i[3-7]86-*-bsdi)
845 changequote([,])dnl
846 COREFILE=
847 ;;
848 changequote(,)dnl
849 i[3-7]86-*-bsd* | i[3-7]86-*-freebsd[123] | i[3-7]86-*-freebsd[123]\.* | i[3-7]86-*-freebsd4\.[01234] | i[3-7]86-*-freebsd4\.[01234]\.* | i[3-7]86-*-freebsd*aout*)
850 changequote([,])dnl
851 COREFILE=trad-core.lo
852 TRAD_HEADER='"hosts/i386bsd.h"'
853 ;;
854 changequote(,)dnl
855 i[3-7]86-*-freebsd* | i[3-7]86-*-kfreebsd*-gnu | i[3-7]86-*-dragonfly*)
856 changequote([,])dnl
857 COREFILE=''
858 TRAD_HEADER='"hosts/i386bsd.h"'
859 ;;
860 changequote(,)dnl
861 i[3-7]86-*-netbsd* | i[3-7]86-*-knetbsd*-gnu | i[3-7]86-*-openbsd*)
862 changequote([,])dnl
863 COREFILE=netbsd-core.lo
864 ;;
865 changequote(,)dnl
866 i[3-7]86-esix-sysv3*)
867 changequote([,])dnl
868 COREFILE=trad-core.lo
869 TRAD_HEADER='"hosts/esix.h"'
870 ;;
871 changequote(,)dnl
872 i[3-7]86-*-sco3.2v5*)
873 changequote([,])dnl
874 COREFILE=sco5-core.lo
875 ;;
876 changequote(,)dnl
877 i[3-7]86-*-sco* | i[3-7]86-*-isc*)
878 changequote([,])dnl
879 COREFILE=trad-core.lo
880 TRAD_HEADER='"hosts/i386sco.h"'
881 ;;
882 changequote(,)dnl
883 i[3-7]86-*-mach3*)
884 changequote([,])dnl
885 COREFILE=trad-core.lo
886 TRAD_HEADER='"hosts/i386mach3.h"'
887 ;;
888 changequote(,)dnl
889 i[3-7]86-*-linux-*)
890 changequote([,])dnl
891 COREFILE=trad-core.lo
892 TRAD_HEADER='"hosts/i386linux.h"'
893 case "$enable_targets"-"$want64" in
894 *x86_64-*linux*|*-true)
895 CORE_HEADER='"hosts/x86-64linux.h"'
896 esac
897 ;;
898 changequote(,)dnl
899 i[3-7]86-*-isc*) COREFILE=trad-core.lo ;;
900 i[3-7]86-*-aix*) COREFILE=aix386-core.lo ;;
901 changequote([,])dnl
902 mips-*-netbsd* | mips*-*-openbsd*)
903 COREFILE=netbsd-core.lo
904 ;;
905 mips-sgi-irix4*) COREFILE=irix-core.lo ;;
906 mips-sgi-irix5*) COREFILE=irix-core.lo ;;
907 mips-sgi-irix6*) COREFILE=irix-core.lo ;;
908 m68*-*-linux-*)
909 COREFILE=trad-core.lo
910 TRAD_HEADER='"hosts/m68klinux.h"'
911 ;;
912 m68*-*-netbsd*)
913 COREFILE=netbsd-core.lo
914 ;;
915 ns32k-pc532-mach)
916 COREFILE=trad-core.lo
917 TRAD_HEADER='"hosts/pc532mach.h"'
918 ;;
919 ns32k-*-netbsd* | ns32k-*-openbsd*)
920 COREFILE=netbsd-core.lo
921 ;;
922 rs6000-*-lynx*)
923 COREFILE=lynx-core.lo
924 ;;
925 changequote(,)dnl
926 rs6000-*-aix[5-9].* | powerpc-*-aix[5-9].* | powerpc64-*-aix[5-9].*)
927 changequote([,])dnl
928 COREFILE=rs6000-core.lo
929 COREFLAG="$COREFLAG -DAIX_5_CORE -DAIX_CORE_DUMPX_CORE"
930 ;;
931 changequote(,)dnl
932 rs6000-*-aix4.[3-9]* | powerpc-*-aix4.[3-9]*)
933 changequote([,])dnl
934 COREFILE=rs6000-core.lo
935 COREFLAG="$COREFLAG -DAIX_CORE_DUMPX_CORE"
936 # Not all versions of AIX with -DAIX_CORE_DUMPX_CORE
937 # have c_impl as a member of struct core_dumpx
938 AC_MSG_CHECKING([for c_impl in struct core_dumpx])
939 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <core.h>]], [[struct core_dumpx c; c.c_impl = 0;]])],[AC_DEFINE(HAVE_ST_C_IMPL, 1,
940 [Define if struct core_dumpx has member c_impl])
941 AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)])
942 ;;
943 rs6000-*-aix4*) COREFILE=rs6000-core.lo ;;
944 rs6000-*-*) COREFILE=rs6000-core.lo ;;
945 powerpc64-*-aix*) COREFILE=rs6000-core.lo ;;
946 powerpc-*-aix4*) COREFILE=rs6000-core.lo ;;
947 powerpc-*-aix*) COREFILE=rs6000-core.lo ;;
948 powerpc-*-beos*) ;;
949 powerpc-*-freebsd* | powerpc-*-kfreebsd*-gnu)
950 COREFILE='' ;;
951 powerpc-*-netbsd*) COREFILE=netbsd-core.lo ;;
952 powerpc-*-*bsd*) COREFILE=netbsd-core.lo ;;
953 s390*-*-*) COREFILE=trad-core.lo ;;
954 sh*-*-netbsd* | sh*-*-openbsd*)
955 COREFILE=netbsd-core.lo
956 ;;
957 sparc-*-netbsd* | sparc*-*-openbsd*)
958 COREFILE=netbsd-core.lo
959 ;;
960 vax-*-netbsd* | vax-*-openbsd*)
961 COREFILE=netbsd-core.lo
962 ;;
963 vax-*-ultrix2*)
964 COREFILE=trad-core.lo
965 TRAD_HEADER='"hosts/vaxult2.h"'
966 ;;
967 vax-*-ultrix*)
968 COREFILE=trad-core.lo
969 TRAD_HEADER='"hosts/vaxult2.h"'
970 ;;
971 vax-*-linux-*)
972 COREFILE=trad-core.lo
973 TRAD_HEADER='"hosts/vaxlinux.h"'
974 ;;
975 vax-*-*)
976 COREFILE=trad-core.lo
977 TRAD_HEADER='"hosts/vaxbsd.h"'
978 ;;
979 x86_64-*-linux*)
980 CORE_HEADER='"hosts/x86-64linux.h"'
981 ;;
982 x86_64-*-netbsd* | x86_64-*-openbsd*)
983 COREFILE=netbsd-core.lo
984 ;;
985 esac
986
987 case "$COREFILE" in
988 aix386-core.lo) COREFLAG=-DAIX386_CORE ;;
989 hppabsd-core.lo) COREFLAG=-DHPPABSD_CORE ;;
990 hpux-core.lo) COREFLAG=-DHPUX_CORE ;;
991 irix-core.lo) COREFLAG=-DIRIX_CORE ;;
992 lynx-core.lo) COREFLAG=-DLYNX_CORE ;;
993 netbsd-core.lo) COREFLAG=-DNETBSD_CORE ;;
994 osf-core.lo) COREFLAG=-DOSF_CORE ;;
995 ptrace-core.lo) COREFLAG=-DPTRACE_CORE ;;
996 rs6000-core.lo) COREFLAG="$COREFLAG -DAIX_CORE" ;;
997 sco5-core.lo) COREFLAG="$COREFLAG -DSCO5_CORE" ;;
998 trad-core.lo) COREFLAG="$COREFLAG -DTRAD_CORE" ;;
999 esac
1000
1001 # ELF corefile support has several flavors, but all of
1002 # them use something called <sys/procfs.h>
1003 AC_CHECK_HEADERS(sys/procfs.h)
1004 if test "$ac_cv_header_sys_procfs_h" = yes; then
1005 BFD_HAVE_SYS_PROCFS_TYPE(prstatus_t)
1006 BFD_HAVE_SYS_PROCFS_TYPE(prstatus32_t)
1007 BFD_HAVE_SYS_PROCFS_TYPE_MEMBER(prstatus_t, pr_who)
1008 BFD_HAVE_SYS_PROCFS_TYPE_MEMBER(prstatus32_t, pr_who)
1009 BFD_HAVE_SYS_PROCFS_TYPE(pstatus_t)
1010 BFD_HAVE_SYS_PROCFS_TYPE(pxstatus_t)
1011 BFD_HAVE_SYS_PROCFS_TYPE(pstatus32_t)
1012 BFD_HAVE_SYS_PROCFS_TYPE(prpsinfo_t)
1013 BFD_HAVE_SYS_PROCFS_TYPE_MEMBER(prpsinfo_t, pr_pid)
1014 BFD_HAVE_SYS_PROCFS_TYPE(prpsinfo32_t)
1015 BFD_HAVE_SYS_PROCFS_TYPE_MEMBER(prpsinfo32_t, pr_pid)
1016 BFD_HAVE_SYS_PROCFS_TYPE(psinfo_t)
1017 BFD_HAVE_SYS_PROCFS_TYPE_MEMBER(psinfo_t, pr_pid)
1018 BFD_HAVE_SYS_PROCFS_TYPE(psinfo32_t)
1019 BFD_HAVE_SYS_PROCFS_TYPE_MEMBER(psinfo32_t, pr_pid)
1020 BFD_HAVE_SYS_PROCFS_TYPE(lwpstatus_t)
1021 BFD_HAVE_SYS_PROCFS_TYPE(lwpxstatus_t)
1022 BFD_HAVE_SYS_PROCFS_TYPE_MEMBER(lwpstatus_t, pr_context)
1023 BFD_HAVE_SYS_PROCFS_TYPE_MEMBER(lwpstatus_t, pr_reg)
1024 BFD_HAVE_SYS_PROCFS_TYPE_MEMBER(lwpstatus_t, pr_fpreg)
1025 BFD_HAVE_SYS_PROCFS_TYPE(win32_pstatus_t)
1026 fi
1027 fi
1028 AC_SUBST(COREFILE)
1029 AC_SUBST(COREFLAG)
1030 if test -n "$CORE_HEADER"; then
1031 AC_DEFINE_UNQUOTED(CORE_HEADER, $CORE_HEADER,
1032 [Name of host specific core header file to include in elf.c.])
1033 fi
1034 if test -n "$TRAD_HEADER"; then
1035 AC_DEFINE_UNQUOTED(TRAD_HEADER, $TRAD_HEADER,
1036 [Name of host specific header file to include in trad-core.c.])
1037 fi
1038
1039 if test "$plugins" = "yes"; then
1040 supports_plugins=1
1041 else
1042 supports_plugins=0
1043 fi
1044 AC_SUBST(supports_plugins)
1045 AC_SUBST(lt_cv_dlopen_libs)
1046
1047 # Determine the host dependent file_ptr a.k.a. off_t type. In order
1048 # prefer: off64_t - if ftello64 and fseeko64, off_t - if ftello and
1049 # fseeko, long. This assumes that sizeof off_t is .ge. sizeof long.
1050 # Hopefully a reasonable assumption since fseeko et.al. should be
1051 # upward compatible.
1052 AC_CHECK_FUNCS(ftello ftello64 fseeko fseeko64 fopen64)
1053 if test x"$ac_cv_func_ftello" = xyes -a x"$ac_cv_func_fseeko" = xyes; then
1054 AC_CHECK_SIZEOF(off_t)
1055 fi
1056 AC_MSG_CHECKING([file_ptr type])
1057 bfd_file_ptr="long"
1058 bfd_ufile_ptr="unsigned long"
1059 if test x"$ac_cv_func_ftello64" = xyes -a x"$ac_cv_func_fseeko64" = xyes \
1060 -o x"${ac_cv_sizeof_off_t}" = x8; then
1061 bfd_file_ptr=BFD_HOST_64_BIT
1062 bfd_ufile_ptr=BFD_HOST_U_64_BIT
1063 fi
1064 AC_MSG_RESULT($bfd_file_ptr)
1065 AC_SUBST(bfd_file_ptr)
1066 AC_SUBST(bfd_ufile_ptr)
1067
1068 dnl AC_CHECK_HEADERS(sys/mman.h)
1069 AC_FUNC_MMAP
1070 AC_CHECK_FUNCS(madvise mprotect)
1071 case ${want_mmap}+${ac_cv_func_mmap_fixed_mapped} in
1072 true+yes ) AC_DEFINE(USE_MMAP, 1, [Use mmap if it's available?]) ;;
1073 esac
1074
1075 rm -f doc/config.status
1076 AC_CONFIG_FILES([Makefile doc/Makefile bfd-in3.h:bfd-in2.h po/Makefile.in:po/Make-in])
1077
1078 dnl We need this duplication, even though we use AM_PO_SUBDIRS, because of
1079 dnl our two separate POTFILES. Yuck.
1080 AC_CONFIG_COMMANDS([default],
1081 [[
1082 case "$srcdir" in
1083 .) srcdirpre= ;;
1084 *) srcdirpre='$(srcdir)/' ;;
1085 esac
1086 POFILES=
1087 GMOFILES=
1088 for lang in dummy $OBSOLETE_ALL_LINGUAS; do
1089 if test $lang != dummy; then
1090 POFILES="$POFILES $srcdirpre$lang.po"
1091 GMOFILES="$GMOFILES $srcdirpre$lang.gmo"
1092 fi
1093 done
1094 sed -e '/SRC-POTFILES =/r po/SRC-POTFILES' \
1095 -e '/BLD-POTFILES =/r po/BLD-POTFILES' \
1096 -e "s,@POFILES@,$POFILES," \
1097 -e "s,@GMOFILES@,$GMOFILES," \
1098 po/Makefile.in > po/Makefile]],[[]])
1099
1100 dnl Required by html, pdf, install-pdf and install-html
1101 AC_SUBST(datarootdir)
1102 AC_SUBST(docdir)
1103 AC_SUBST(htmldir)
1104 AC_SUBST(pdfdir)
1105
1106 AC_OUTPUT
This page took 0.063478 seconds and 4 git commands to generate.