Remove arm-aout and arm-coff support
[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_nacl_be_vec) tb="$tb elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo $elf" ;;
428 arm_elf32_nacl_le_vec) tb="$tb elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo $elf" ;;
429 arm_elf32_symbian_be_vec) tb="$tb elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo $elf" ;;
430 arm_elf32_symbian_le_vec) tb="$tb elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo $elf" ;;
431 arm_elf32_vxworks_be_vec) tb="$tb elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo $elf" ;;
432 arm_elf32_vxworks_le_vec) tb="$tb elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo $elf" ;;
433 arm_pe_be_vec) tb="$tb pe-arm.lo peigen.lo $coff" ;;
434 arm_pe_le_vec) tb="$tb pe-arm.lo peigen.lo $coff" ;;
435 arm_pe_wince_be_vec) tb="$tb pe-arm-wince.lo pe-arm.lo peigen.lo $coff" ;;
436 arm_pe_wince_le_vec) tb="$tb pe-arm-wince.lo pe-arm.lo peigen.lo $coff" ;;
437 arm_pei_be_vec) tb="$tb pei-arm.lo peigen.lo $coff" ;;
438 arm_pei_le_vec) tb="$tb pei-arm.lo peigen.lo $coff" ;;
439 arm_pei_wince_be_vec) tb="$tb pei-arm-wince.lo pei-arm.lo peigen.lo $coff" ;;
440 arm_pei_wince_le_vec) tb="$tb pei-arm-wince.lo pei-arm.lo peigen.lo $coff" ;;
441 arm_mach_o_vec) tb="$tb mach-o-arm.lo" ;;
442 avr_elf32_vec) tb="$tb elf32-avr.lo elf32.lo $elf" ;;
443 bfin_elf32_vec) tb="$tb elf32-bfin.lo elf32.lo $elf" ;;
444 bfin_elf32_fdpic_vec) tb="$tb elf32-bfin.lo elf32.lo $elf" ;;
445 cr16_elf32_vec) tb="$tb elf32-cr16.lo elf32.lo $elf" ;;
446 cr16c_elf32_vec) tb="$tb elf32-cr16c.lo elf32.lo $elf" ;;
447 cris_aout_vec) tb="$tb aout-cris.lo" ;;
448 cris_elf32_vec) tb="$tb elf32-cris.lo elf32.lo $elf" ;;
449 cris_elf32_us_vec) tb="$tb elf32-cris.lo elf32.lo $elf" ;;
450 crx_elf32_vec) tb="$tb elf32-crx.lo elf32.lo $elf" ;;
451 d10v_elf32_vec) tb="$tb elf32-d10v.lo elf32.lo $elf" ;;
452 d30v_elf32_vec) tb="$tb elf32-d30v.lo elf32.lo $elf" ;;
453 dlx_elf32_be_vec) tb="$tb elf32-dlx.lo elf32.lo $elf" ;;
454 elf32_be_vec) tb="$tb elf32-gen.lo elf32.lo $elf" ;;
455 elf32_le_vec) tb="$tb elf32-gen.lo elf32.lo $elf" ;;
456 elf64_be_vec) tb="$tb elf64-gen.lo elf64.lo $elf"; target_size=64 ;;
457 elf64_le_vec) tb="$tb elf64-gen.lo elf64.lo $elf"; target_size=64 ;;
458 epiphany_elf32_vec) tb="$tb elf32-epiphany.lo elf32.lo $elf" ;;
459 fr30_elf32_vec) tb="$tb elf32-fr30.lo elf32.lo $elf" ;;
460 frv_elf32_vec) tb="$tb elf32-frv.lo elf32.lo $elf" ;;
461 frv_elf32_fdpic_vec) tb="$tb elf32-frv.lo elf32.lo $elf" ;;
462 h8300_elf32_vec) tb="$tb elf32-h8300.lo elf32.lo $elf" ;;
463 h8300_elf32_linux_vec) tb="$tb elf32-h8300.lo elf32.lo $elf" ;;
464 hppa_elf32_vec) tb="$tb elf32-hppa.lo elf32.lo $elf" ;;
465 hppa_elf32_linux_vec) tb="$tb elf32-hppa.lo elf32.lo $elf" ;;
466 hppa_elf32_nbsd_vec) tb="$tb elf32-hppa.lo elf32.lo $elf" ;;
467 hppa_elf64_vec) tb="$tb elf64-hppa.lo elf64.lo $elf"; target_size=64 ;;
468 hppa_elf64_linux_vec) tb="$tb elf64-hppa.lo elf64.lo $elf"; target_size=64 ;;
469 hppa_som_vec) tb="$tb som.lo" ;;
470 i386_aout_vec) tb="$tb i386aout.lo aout32.lo" ;;
471 i386_aout_bsd_vec) tb="$tb i386bsd.lo aout32.lo" ;;
472 i386_aout_lynx_vec) tb="$tb i386lynx.lo lynx-core.lo aout32.lo" ;;
473 i386_coff_vec) tb="$tb coff-i386.lo $coff" ;;
474 i386_coff_go32_vec) tb="$tb coff-go32.lo $coff" ;;
475 i386_coff_go32stubbed_vec) tb="$tb coff-stgo32.lo $coff" ;;
476 i386_coff_lynx_vec) tb="$tb cf-i386lynx.lo lynx-core.lo $coff" ;;
477 i386_elf32_vec) tb="$tb elf32-i386.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf-vxworks.lo elf32.lo $elf" ;;
478 i386_elf32_fbsd_vec) tb="$tb elf32-i386.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf-vxworks.lo elf32.lo $elf" ;;
479 i386_elf32_nacl_vec) tb="$tb elf32-i386.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf-vxworks.lo elf32.lo $elf" ;;
480 i386_elf32_sol2_vec) tb="$tb elf32-i386.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf-vxworks.lo elf32.lo $elf" ;;
481 i386_elf32_vxworks_vec) tb="$tb elf32-i386.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf-vxworks.lo elf32.lo $elf" ;;
482 i386_mach_o_vec) tb="$tb mach-o-i386.lo" ;;
483 i386_msdos_vec) tb="$tb i386msdos.lo" ;;
484 i386_pe_vec) tb="$tb pe-i386.lo peigen.lo $coff" ;;
485 i386_pei_vec) tb="$tb pei-i386.lo peigen.lo $coff" ;;
486 iamcu_elf32_vec) tb="$tb elf32-i386.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf-vxworks.lo elf32.lo $elf" ;;
487 ia64_elf32_be_vec) tb="$tb elf32-ia64.lo elfxx-ia64.lo elf32.lo $elf" ;;
488 ia64_elf32_hpux_be_vec) tb="$tb elf32-ia64.lo elfxx-ia64.lo elf32.lo $elf" ;;
489 ia64_elf64_be_vec) tb="$tb elf64-ia64.lo elfxx-ia64.lo elf64.lo $elf"; target_size=64 ;;
490 ia64_elf64_le_vec) tb="$tb elf64-ia64.lo elfxx-ia64.lo elf64.lo $elf"; target_size=64 ;;
491 ia64_elf64_hpux_be_vec) tb="$tb elf64-ia64.lo elfxx-ia64.lo elf64.lo $elf"; target_size=64 ;;
492 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 ;;
493 ia64_pei_vec) tb="$tb pei-ia64.lo pepigen.lo $coff"; target_size=64 ;;
494 ip2k_elf32_vec) tb="$tb elf32-ip2k.lo elf32.lo $elf" ;;
495 iq2000_elf32_vec) tb="$tb elf32-iq2000.lo elf32.lo $elf" ;;
496 k1om_elf64_vec) tb="$tb elf64-x86-64.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf64.lo $elf"; target_size=64 ;;
497 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 ;;
498 l1om_elf64_vec) tb="$tb elf64-x86-64.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf64.lo $elf"; target_size=64 ;;
499 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 ;;
500 lm32_elf32_vec) tb="$tb elf32-lm32.lo elf32.lo $elf" ;;
501 lm32_elf32_fdpic_vec) tb="$tb elf32-lm32.lo elf32.lo $elf" ;;
502 m32c_elf32_vec) tb="$tb elf32-m32c.lo elf32.lo $elf" ;;
503 m32r_elf32_vec) tb="$tb elf32-m32r.lo elf32.lo $elf" ;;
504 m32r_elf32_le_vec) tb="$tb elf32-m32r.lo elf32.lo $elf" ;;
505 m32r_elf32_linux_vec) tb="$tb elf32-m32r.lo elf32.lo $elf" ;;
506 m32r_elf32_linux_le_vec) tb="$tb elf32-m32r.lo elf32.lo $elf" ;;
507 m68hc11_elf32_vec) tb="$tb elf32-m68hc11.lo elf32-m68hc1x.lo elf32.lo $elf" ;;
508 m68hc12_elf32_vec) tb="$tb elf32-m68hc12.lo elf32-m68hc1x.lo elf32.lo $elf" ;;
509 m68k_elf32_vec) tb="$tb elf32-m68k.lo elf32.lo $elf" ;;
510 mach_o_be_vec) tb="$tb mach-o.lo dwarf2.lo" ;;
511 mach_o_le_vec) tb="$tb mach-o.lo dwarf2.lo" ;;
512 mach_o_fat_vec) tb="$tb mach-o.lo dwarf2.lo" ;;
513 mcore_elf32_be_vec) tb="$tb elf32-mcore.lo elf32.lo $elf" ;;
514 mcore_elf32_le_vec) tb="$tb elf32-mcore.lo elf32.lo $elf" ;;
515 mcore_pe_be_vec) tb="$tb pe-mcore.lo peigen.lo $coff" ;;
516 mcore_pe_le_vec) tb="$tb pe-mcore.lo peigen.lo $coff" ;;
517 mcore_pei_be_vec) tb="$tb pei-mcore.lo peigen.lo $coff" ;;
518 mcore_pei_le_vec) tb="$tb pei-mcore.lo peigen.lo $coff" ;;
519 mep_elf32_vec) tb="$tb elf32-mep.lo elf32.lo $elf" ;;
520 mep_elf32_le_vec) tb="$tb elf32-mep.lo elf32.lo $elf" ;;
521 metag_elf32_vec) tb="$tb elf32-metag.lo elf32.lo $elf" ;;
522 microblaze_elf32_vec) tb="$tb elf32-microblaze.lo elf32.lo $elf" ;;
523 microblaze_elf32_le_vec) tb="$tb elf32-microblaze.lo elf32.lo $elf" ;;
524 mips_ecoff_be_vec) tb="$tb coff-mips.lo ecoff.lo $ecoff" ;;
525 mips_ecoff_le_vec) tb="$tb coff-mips.lo ecoff.lo $ecoff" ;;
526 mips_ecoff_bele_vec) tb="$tb coff-mips.lo ecoff.lo $ecoff" ;;
527 mips_elf32_be_vec) tb="$tb elf32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff" ;;
528 mips_elf32_le_vec) tb="$tb elf32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff" ;;
529 mips_elf32_n_be_vec) tb="$tb elfn32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff"; target_size=64 ;;
530 mips_elf32_n_le_vec) tb="$tb elfn32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff"; target_size=64 ;;
531 mips_elf32_ntrad_be_vec) tb="$tb elfn32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff"; target_size=64 ;;
532 mips_elf32_ntrad_le_vec) tb="$tb elfn32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff"; target_size=64 ;;
533 mips_elf32_ntradfbsd_be_vec) tb="$tb elfn32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff"; target_size=64 ;;
534 mips_elf32_ntradfbsd_le_vec) tb="$tb elfn32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff"; target_size=64 ;;
535 mips_elf32_trad_be_vec) tb="$tb elf32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff" ;;
536 mips_elf32_trad_le_vec) tb="$tb elf32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff" ;;
537 mips_elf32_tradfbsd_be_vec) tb="$tb elf32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff" ;;
538 mips_elf32_tradfbsd_le_vec) tb="$tb elf32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff" ;;
539 mips_elf32_vxworks_be_vec) tb="$tb elf32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff" ;;
540 mips_elf32_vxworks_le_vec) tb="$tb elf32-mips.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff" ;;
541 mips_elf64_be_vec) tb="$tb elf64-mips.lo elf64.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff"; target_size=64 ;;
542 mips_elf64_le_vec) tb="$tb elf64-mips.lo elf64.lo elfxx-mips.lo elf-vxworks.lo elf32.lo $elf $ecoff"; target_size=64 ;;
543 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 ;;
544 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 ;;
545 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 ;;
546 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 ;;
547 mmix_elf64_vec) tb="$tb elf64-mmix.lo elf64.lo $elf" target_size=64 ;;
548 mmix_mmo_vec) tb="$tb mmo.lo" target_size=64 ;;
549 mn10200_elf32_vec) tb="$tb elf-m10200.lo elf32.lo $elf" ;;
550 mn10300_elf32_vec) tb="$tb elf-m10300.lo elf32.lo $elf" ;;
551 moxie_elf32_be_vec) tb="$tb elf32-moxie.lo elf32.lo $elf" ;;
552 moxie_elf32_le_vec) tb="$tb elf32-moxie.lo elf32.lo $elf" ;;
553 msp430_elf32_vec) tb="$tb elf32-msp430.lo elf32.lo $elf" ;;
554 msp430_elf32_ti_vec) tb="$tb elf32-msp430.lo elf32.lo $elf" ;;
555 mt_elf32_vec) tb="$tb elf32-mt.lo elf32.lo $elf" ;;
556 nds32_elf32_be_vec) tb="$tb elf32-nds32.lo elf32.lo $elf" ;;
557 nds32_elf32_le_vec) tb="$tb elf32-nds32.lo elf32.lo $elf" ;;
558 nds32_elf32_linux_be_vec) tb="$tb elf32-nds32.lo elf32.lo $elf" ;;
559 nds32_elf32_linux_le_vec) tb="$tb elf32-nds32.lo elf32.lo $elf" ;;
560 nios2_elf32_be_vec) tb="$tb elf32-nios2.lo elf32.lo $elf" ;;
561 nios2_elf32_le_vec) tb="$tb elf32-nios2.lo elf32.lo $elf" ;;
562 ns32k_aout_pc532mach_vec) tb="$tb pc532-mach.lo aout-ns32k.lo" ;;
563 ns32k_aout_pc532nbsd_vec) tb="$tb ns32knetbsd.lo aout-ns32k.lo" ;;
564 or1k_elf32_vec) tb="$tb elf32-or1k.lo elf32.lo $elf" ;;
565 pdp11_aout_vec) tb="$tb pdp11.lo" ;;
566 pef_vec) tb="$tb pef.lo" ;;
567 pef_xlib_vec) tb="$tb pef.lo" ;;
568 pj_elf32_vec) tb="$tb elf32-pj.lo elf32.lo $elf" ;;
569 pj_elf32_le_vec) tb="$tb elf32-pj.lo elf32.lo $elf" ;;
570 plugin_vec) tb="$tb plugin.lo" ;;
571 powerpc_boot_vec) tb="$tb ppcboot.lo" ;;
572 powerpc_elf32_vec) tb="$tb elf32-ppc.lo elf-vxworks.lo elf32.lo $elf" ;;
573 powerpc_elf32_le_vec) tb="$tb elf32-ppc.lo elf-vxworks.lo elf32.lo $elf" ;;
574 powerpc_elf32_fbsd_vec) tb="$tb elf32-ppc.lo elf-vxworks.lo elf32.lo $elf" ;;
575 powerpc_elf32_vxworks_vec) tb="$tb elf32-ppc.lo elf-vxworks.lo elf32.lo $elf" ;;
576 powerpc_elf64_vec) tb="$tb elf64-ppc.lo elf64-gen.lo elf64.lo $elf"; target_size=64 ;;
577 powerpc_elf64_le_vec) tb="$tb elf64-ppc.lo elf64-gen.lo elf64.lo $elf" target_size=64 ;;
578 powerpc_elf64_fbsd_vec) tb="$tb elf64-ppc.lo elf64-gen.lo elf64.lo $elf" target_size=64 ;;
579 powerpc_pe_vec) tb="$tb pe-ppc.lo peigen.lo $coff" ;;
580 powerpc_pe_le_vec) tb="$tb pe-ppc.lo peigen.lo $coff" ;;
581 powerpc_pei_vec) tb="$tb pei-ppc.lo peigen.lo $coff" ;;
582 powerpc_pei_le_vec) tb="$tb pei-ppc.lo peigen.lo $coff" ;;
583 powerpc_xcoff_vec) tb="$tb coff-rs6000.lo $xcoff" ;;
584 pru_elf32_vec) tb="$tb elf32-pru.lo elf32.lo $elf" ;;
585 riscv_elf32_vec) tb="$tb elf32-riscv.lo elfxx-riscv.lo elf32.lo $elf" ;;
586 riscv_elf64_vec) tb="$tb elf64-riscv.lo elf64.lo elfxx-riscv.lo elf32.lo $elf"; target_size=64 ;;
587 rl78_elf32_vec) tb="$tb elf32-rl78.lo elf32.lo $elf" ;;
588 rs6000_xcoff64_vec) tb="$tb coff64-rs6000.lo aix5ppc-core.lo $xcoff"; target_size=64 ;;
589 rs6000_xcoff64_aix_vec) tb="$tb coff64-rs6000.lo aix5ppc-core.lo $xcoff"; target_size=64 ;;
590 rs6000_xcoff_vec) tb="$tb coff-rs6000.lo $xcoff" ;;
591 rx_elf32_be_vec) tb="$tb elf32-rx.lo elf32.lo $elf" ;;
592 rx_elf32_be_ns_vec) tb="$tb elf32-rx.lo elf32.lo $elf" ;;
593 rx_elf32_le_vec) tb="$tb elf32-rx.lo elf32.lo $elf" ;;
594 s390_elf32_vec) tb="$tb elf32-s390.lo elf32.lo $elf" ;;
595 s390_elf64_vec) tb="$tb elf64-s390.lo elf64.lo $elf"; target_size=64 ;;
596 score_elf32_be_vec) tb="$tb elf32-score.lo elf32-score7.lo elf32.lo $elf"; want64=true; target_size=64 ;;
597 score_elf32_le_vec) tb="$tb elf32-score.lo elf32-score7.lo elf32.lo $elf"; want64=true; target_size=64 ;;
598 sh_coff_vec) tb="$tb coff-sh.lo $coff" ;;
599 sh_coff_le_vec) tb="$tb coff-sh.lo $coff" ;;
600 sh_coff_small_vec) tb="$tb coff-sh.lo $coff" ;;
601 sh_coff_small_le_vec) tb="$tb coff-sh.lo $coff" ;;
602 sh_elf32_vec) tb="$tb elf32-sh.lo elf-vxworks.lo elf32.lo $elf coff-sh.lo $coff" ;;
603 sh_elf32_le_vec) tb="$tb elf32-sh.lo elf-vxworks.lo elf32.lo $elf coff-sh.lo $coff" ;;
604 sh_elf32_fdpic_be_vec) tb="$tb elf32-sh.lo elf-vxworks.lo elf32.lo $elf coff-sh.lo $coff" ;;
605 sh_elf32_fdpic_le_vec) tb="$tb elf32-sh.lo elf-vxworks.lo elf32.lo $elf coff-sh.lo $coff" ;;
606 sh_elf32_linux_vec) tb="$tb elf32-sh.lo elf-vxworks.lo elf32.lo $elf coff-sh.lo $coff" ;;
607 sh_elf32_linux_be_vec) tb="$tb elf32-sh.lo elf-vxworks.lo elf32.lo $elf coff-sh.lo $coff" ;;
608 sh_elf32_nbsd_vec) tb="$tb elf32-sh.lo elf-vxworks.lo elf32.lo $elf coff-sh.lo $coff" ;;
609 sh_elf32_nbsd_le_vec) tb="$tb elf32-sh.lo elf-vxworks.lo elf32.lo $elf coff-sh.lo $coff" ;;
610 sh_elf32_vxworks_vec) tb="$tb elf32-sh.lo elf-vxworks.lo elf32.lo $elf coff-sh.lo $coff" ;;
611 sh_elf32_vxworks_le_vec) tb="$tb elf32-sh.lo elf-vxworks.lo elf32.lo $elf coff-sh.lo $coff" ;;
612 sh_pe_le_vec) tb="$tb pe-sh.lo coff-sh.lo peigen.lo $coff" ;;
613 sh_pei_le_vec) tb="$tb pei-sh.lo coff-sh.lo peigen.lo $coff" ;;
614 sparc_elf32_vec) tb="$tb elf32-sparc.lo elfxx-sparc.lo elf-vxworks.lo elf32.lo $elf" ;;
615 sparc_elf32_sol2_vec) tb="$tb elf32-sparc.lo elfxx-sparc.lo elf-vxworks.lo elf32.lo $elf" ;;
616 sparc_elf32_vxworks_vec) tb="$tb elf32-sparc.lo elfxx-sparc.lo elf-vxworks.lo elf32.lo $elf" ;;
617 sparc_elf64_vec) tb="$tb elf64-sparc.lo elfxx-sparc.lo elf-vxworks.lo elf64.lo $elf"; target_size=64 ;;
618 sparc_elf64_fbsd_vec) tb="$tb elf64-sparc.lo elfxx-sparc.lo elf-vxworks.lo elf64.lo $elf"; target_size=64 ;;
619 sparc_elf64_sol2_vec) tb="$tb elf64-sparc.lo elfxx-sparc.lo elf-vxworks.lo elf64.lo $elf"; target_size=64 ;;
620 spu_elf32_vec) tb="$tb elf32-spu.lo elf32.lo $elf" ;;
621 sym_vec) tb="$tb xsym.lo" ;;
622 tic30_aout_vec) tb="$tb aout-tic30.lo" ;;
623 tic30_coff_vec) tb="$tb coff-tic30.lo $coffgen" ;;
624 tic4x_coff0_vec) tb="$tb coff-tic4x.lo $coffgen" ;;
625 tic4x_coff0_beh_vec) tb="$tb coff-tic4x.lo $coffgen" ;;
626 tic4x_coff1_vec) tb="$tb coff-tic4x.lo $coffgen" ;;
627 tic4x_coff1_beh_vec) tb="$tb coff-tic4x.lo $coffgen" ;;
628 tic4x_coff2_vec) tb="$tb coff-tic4x.lo $coffgen" ;;
629 tic4x_coff2_beh_vec) tb="$tb coff-tic4x.lo $coffgen" ;;
630 tic54x_coff0_vec) tb="$tb coff-tic54x.lo $coffgen" ;;
631 tic54x_coff0_beh_vec) tb="$tb coff-tic54x.lo $coffgen" ;;
632 tic54x_coff1_vec) tb="$tb coff-tic54x.lo $coffgen" ;;
633 tic54x_coff1_beh_vec) tb="$tb coff-tic54x.lo $coffgen" ;;
634 tic54x_coff2_vec) tb="$tb coff-tic54x.lo $coffgen" ;;
635 tic54x_coff2_beh_vec) tb="$tb coff-tic54x.lo $coffgen" ;;
636 tic6x_elf32_be_vec) tb="$tb elf32-tic6x.lo elf32.lo $elf" ;;
637 tic6x_elf32_le_vec) tb="$tb elf32-tic6x.lo elf32.lo $elf" ;;
638 tic6x_elf32_c6000_be_vec) tb="$tb elf32-tic6x.lo elf32.lo $elf" ;;
639 tic6x_elf32_c6000_le_vec) tb="$tb elf32-tic6x.lo elf32.lo $elf" ;;
640 tic6x_elf32_linux_be_vec) tb="$tb elf32-tic6x.lo elf32.lo $elf" ;;
641 tic6x_elf32_linux_le_vec) tb="$tb elf32-tic6x.lo elf32.lo $elf" ;;
642 tic80_coff_vec) tb="$tb coff-tic80.lo $coff" ;;
643 tilegx_elf32_be_vec) tb="$tb elf32-tilegx.lo elfxx-tilegx.lo elf32.lo $elf" ; target_size=32 ;;
644 tilegx_elf32_le_vec) tb="$tb elf32-tilegx.lo elfxx-tilegx.lo elf32.lo $elf" ; target_size=32 ;;
645 tilegx_elf64_be_vec) tb="$tb elf64-tilegx.lo elfxx-tilegx.lo elf64.lo $elf" ; target_size=64 ;;
646 tilegx_elf64_le_vec) tb="$tb elf64-tilegx.lo elfxx-tilegx.lo elf64.lo $elf" ; target_size=64 ;;
647 tilepro_elf32_vec) tb="$tb elf32-tilepro.lo elf32.lo $elf" ;;
648 v800_elf32_vec) tb="$tb elf32-v850.lo elf32.lo $elf" ;;
649 v850_elf32_vec) tb="$tb elf32-v850.lo elf32.lo $elf" ;;
650 vax_aout_1knbsd_vec) tb="$tb vax1knetbsd.lo aout32.lo" ;;
651 vax_aout_nbsd_vec) tb="$tb vaxnetbsd.lo aout32.lo" ;;
652 vax_elf32_vec) tb="$tb elf32-vax.lo elf32.lo $elf" ;;
653 ft32_elf32_vec) tb="$tb elf32-ft32.lo elf32.lo $elf" ;;
654 visium_elf32_vec) tb="$tb elf32-visium.lo elf32.lo $elf" ;;
655 wasm_vec) tb="$tb wasm-module.lo" ;;
656 wasm32_elf32_vec) tb="$tb elf32-wasm32.lo elf32.lo $elf" ;;
657 x86_64_coff_vec) tb="$tb coff-x86_64.lo $coff"; target_size=64 ;;
658 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 ;;
659 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 ;;
660 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 ;;
661 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 ;;
662 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 ;;
663 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 ;;
664 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 ;;
665 x86_64_mach_o_vec) tb="$tb mach-o-x86-64.lo" ;;
666 x86_64_pe_vec) tb="$tb pe-x86_64.lo pex64igen.lo $coff"; target_size=64 ;;
667 x86_64_pe_be_vec) tb="$tb pe-x86_64.lo pex64igen.lo $coff"; target_size=64 ;;
668 x86_64_pei_vec) tb="$tb pei-x86_64.lo pex64igen.lo $coff"; target_size=64 ;;
669 xc16x_elf32_vec) tb="$tb elf32-xc16x.lo elf32.lo $elf" ;;
670 xgate_elf32_vec) tb="$tb elf32-xgate.lo elf32.lo $elf" ;;
671 xstormy16_elf32_vec) tb="$tb elf32-xstormy16.lo elf32.lo $elf" ;;
672 xtensa_elf32_be_vec) tb="$tb xtensa-isa.lo xtensa-modules.lo elf32-xtensa.lo elf32.lo $elf" ;;
673 xtensa_elf32_le_vec) tb="$tb xtensa-isa.lo xtensa-modules.lo elf32-xtensa.lo elf32.lo $elf" ;;
674 z80_coff_vec) tb="$tb coff-z80.lo reloc16.lo $coffgen" ;;
675 z8k_coff_vec) tb="$tb coff-z8k.lo reloc16.lo $coff" ;;
676
677 # These appear out of order in targets.c
678 srec_vec) tb="$tb srec.lo" ;;
679 symbolsrec_vec) tb="$tb srec.lo" ;;
680 tekhex_vec) tb="$tb tekhex.lo" ;;
681 core_cisco_be_vec) tb="$tb cisco-core.lo" ;;
682 core_cisco_le_vec) tb="$tb cisco-core.lo" ;;
683
684 "") ;;
685 *) AC_MSG_ERROR(*** unknown target vector $vec) ;;
686 esac
687
688 if test ${target_size} = 64; then
689 target64=true
690 fi
691 if test x"${vec}" = x"${defvec}"; then
692 bfd_default_target_size=${target_size}
693 fi
694 done
695
696 # Target architecture .o files.
697 # A couple of CPUs use shorter file names to avoid problems on DOS
698 # filesystems.
699 ta=`echo $selarchs | sed -e s/bfd_/cpu-/g -e s/_arch/.lo/g -e s/mn10200/m10200/ -e s/mn10300/m10300/`
700
701 # Weed out duplicate .o files.
702 f=""
703 for i in $tb ; do
704 case " $f " in
705 *" $i "*) ;;
706 *) f="$f $i" ;;
707 esac
708 done
709 tb="$f"
710
711 f=""
712 for i in $ta ; do
713 case " $f " in
714 *" $i "*) ;;
715 *) f="$f $i" ;;
716 esac
717 done
718 ta="$f"
719
720 bfd_backends="$tb"
721 bfd_machines="$ta"
722
723 if test x${all_targets} = xtrue ; then
724 bfd_backends="${bfd_backends}"' $(ALL_BACKENDS)'
725 bfd_machines="${bfd_machines}"' $(ALL_MACHINES)'
726 selvecs=
727 havevecs=-DHAVE_all_vecs
728 selarchs=
729 test -n "$assocvecs" &&
730 assocvecs=`echo $assocvecs | sed -e 's/^/\&/' -e 's/ \(.\)/,\&\1/g'`
731 else # all_targets is true
732 # Only set these if they will be nonempty, for the clever echo.
733 havevecs=
734 assocvecs=
735 test -n "$selvecs" &&
736 havevecs=`echo $selvecs | sed -e 's/^/-DHAVE_/' -e 's/ \(.\)/ -DHAVE_\1/g'`
737 test -n "$selvecs" &&
738 selvecs=`echo $selvecs | sed -e 's/^/\&/' -e 's/ \(.\)/,\&\1/g'`
739 test -n "$selarchs" &&
740 selarchs=`echo $selarchs | sed -e 's/^/\&/' -e 's/ \(.\)/,\&\1/g'`
741 fi # all_targets is true
742
743 # 64-bit archives need a 64-bit bfd_vma.
744 if test "x$want_64_bit_archive" = xtrue; then
745 want64=true
746 AC_DEFINE(USE_64_BIT_ARCHIVE, 1,
747 [Define if 64-bit archives should always be used.])
748 fi
749
750 case ${host64}-${target64}-${want64} in
751 *true*)
752 wordsize=64
753 bfd64_libs='$(BFD64_LIBS)'
754 all_backends='$(BFD64_BACKENDS) $(BFD32_BACKENDS)'
755 if test $BFD_HOST_64_BIT_DEFINED = 0; then
756 AC_MSG_WARN([You have requested a 64 bit BFD configuration, but])
757 AC_MSG_WARN([your compiler may not have a 64 bit integral type])
758 fi
759 if test -n "$GCC" ; then
760 bad_64bit_gcc=no;
761 AC_MSG_CHECKING([for gcc version with buggy 64-bit support])
762 # Add more tests for gcc versions with non-working 64-bit support here.
763 AC_EGREP_CPP([: 2 : 91 : 1 :],[:__GNUC__:__GNUC_MINOR__:__i386__:],
764 bad_64bit_gcc=yes;
765 AC_MSG_RESULT([yes: egcs-1.1.2 on ix86 spotted]),
766 AC_MSG_RESULT(no))
767 if test $bad_64bit_gcc = yes ; then
768 AC_MSG_ERROR([A newer version of gcc is needed for the requested 64-bit BFD configuration])
769 fi
770 fi
771 ;;
772 false-false-false)
773 wordsize=32
774 all_backends='$(BFD32_BACKENDS)'
775 ;;
776 esac
777
778 tdefaults=""
779 test -n "${defvec}" && tdefaults="${tdefaults} -DDEFAULT_VECTOR=${defvec}"
780 test -n "${selvecs}" && tdefaults="${tdefaults} -DSELECT_VECS='${selvecs}'"
781 test -n "${assocvecs}" && tdefaults="${tdefaults} -DASSOCIATED_VECS='${assocvecs}'"
782 test -n "${selarchs}" && tdefaults="${tdefaults} -DSELECT_ARCHITECTURES='${selarchs}'"
783
784 AC_SUBST(wordsize)
785 AC_SUBST(bfd64_libs)
786 AC_SUBST(all_backends)
787 AC_SUBST(bfd_backends)
788 AC_SUBST(bfd_machines)
789 AC_SUBST(bfd_default_target_size)
790 AC_SUBST(tdefaults)
791 AC_SUBST(havevecs)
792
793 # If we are configured native, pick a core file support file.
794 COREFILE=
795 COREFLAG=
796 CORE_HEADER=
797 TRAD_HEADER=
798 if test "${target}" = "${host}"; then
799 case "${host}" in
800 alpha*-*-freebsd* | alpha*-*-kfreebsd*-gnu | alpha*-*-*vms*)
801 COREFILE=''
802 ;;
803 alpha*-*-linux-*)
804 COREFILE=trad-core.lo
805 TRAD_HEADER='"hosts/alphalinux.h"'
806 ;;
807 alpha*-*-netbsd* | alpha*-*-openbsd*)
808 COREFILE=netbsd-core.lo
809 ;;
810 alpha*-*-*)
811 COREFILE=osf-core.lo
812 ;;
813 arm-*-freebsd* | arm-*-kfreebsd*-gnu)
814 COREFILE='' ;;
815 arm-*-netbsd* | arm-*-openbsd*)
816 COREFILE=netbsd-core.lo
817 ;;
818 arm-*-riscix) COREFILE=trad-core.lo ;;
819 hppa*-*-hpux*) COREFILE=hpux-core.lo ;;
820 hppa*-*-hiux*) COREFILE=hpux-core.lo ;;
821 hppa*-*-mpeix*) COREFILE=hpux-core.lo ;;
822 hppa*-*-bsd*) COREFILE="hpux-core.lo hppabsd-core.lo"
823 COREFLAG="-DHPUX_CORE -DHPPABSD_CORE" ;;
824 hppa*-*-netbsd* | hppa*-*-openbsd*)
825 COREFILE=netbsd-core.lo
826 ;;
827
828 changequote(,)dnl
829 i[3-7]86-sequent-bsd*)
830 changequote([,])dnl
831 COREFILE=trad-core.lo
832 TRAD_HEADER='"hosts/symmetry.h"'
833 ;;
834 changequote(,)dnl
835 i[3-7]86-sequent-sysv4*) ;;
836 i[3-7]86-sequent-sysv*)
837 changequote([,])dnl
838 COREFILE=trad-core.lo
839 TRAD_HEADER='"hosts/symmetry.h"'
840 ;;
841 changequote(,)dnl
842 i[3-7]86-*-bsdi)
843 changequote([,])dnl
844 COREFILE=
845 ;;
846 changequote(,)dnl
847 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*)
848 changequote([,])dnl
849 COREFILE=trad-core.lo
850 TRAD_HEADER='"hosts/i386bsd.h"'
851 ;;
852 changequote(,)dnl
853 i[3-7]86-*-freebsd* | i[3-7]86-*-kfreebsd*-gnu | i[3-7]86-*-dragonfly*)
854 changequote([,])dnl
855 COREFILE=''
856 TRAD_HEADER='"hosts/i386bsd.h"'
857 ;;
858 changequote(,)dnl
859 i[3-7]86-*-netbsd* | i[3-7]86-*-knetbsd*-gnu | i[3-7]86-*-openbsd*)
860 changequote([,])dnl
861 COREFILE=netbsd-core.lo
862 ;;
863 changequote(,)dnl
864 i[3-7]86-esix-sysv3*)
865 changequote([,])dnl
866 COREFILE=trad-core.lo
867 TRAD_HEADER='"hosts/esix.h"'
868 ;;
869 changequote(,)dnl
870 i[3-7]86-*-sco3.2v5*)
871 changequote([,])dnl
872 COREFILE=sco5-core.lo
873 ;;
874 changequote(,)dnl
875 i[3-7]86-*-sco* | i[3-7]86-*-isc*)
876 changequote([,])dnl
877 COREFILE=trad-core.lo
878 TRAD_HEADER='"hosts/i386sco.h"'
879 ;;
880 changequote(,)dnl
881 i[3-7]86-*-mach3*)
882 changequote([,])dnl
883 COREFILE=trad-core.lo
884 TRAD_HEADER='"hosts/i386mach3.h"'
885 ;;
886 changequote(,)dnl
887 i[3-7]86-*-linux-*)
888 changequote([,])dnl
889 COREFILE=trad-core.lo
890 TRAD_HEADER='"hosts/i386linux.h"'
891 case "$enable_targets"-"$want64" in
892 *x86_64-*linux*|*-true)
893 CORE_HEADER='"hosts/x86-64linux.h"'
894 esac
895 ;;
896 changequote(,)dnl
897 i[3-7]86-*-isc*) COREFILE=trad-core.lo ;;
898 i[3-7]86-*-aix*) COREFILE=aix386-core.lo ;;
899 changequote([,])dnl
900 mips-*-netbsd* | mips*-*-openbsd*)
901 COREFILE=netbsd-core.lo
902 ;;
903 mips-sgi-irix4*) COREFILE=irix-core.lo ;;
904 mips-sgi-irix5*) COREFILE=irix-core.lo ;;
905 mips-sgi-irix6*) COREFILE=irix-core.lo ;;
906 m68*-*-linux-*)
907 COREFILE=trad-core.lo
908 TRAD_HEADER='"hosts/m68klinux.h"'
909 ;;
910 m68*-*-netbsd*)
911 COREFILE=netbsd-core.lo
912 ;;
913 ns32k-pc532-mach)
914 COREFILE=trad-core.lo
915 TRAD_HEADER='"hosts/pc532mach.h"'
916 ;;
917 ns32k-*-netbsd* | ns32k-*-openbsd*)
918 COREFILE=netbsd-core.lo
919 ;;
920 rs6000-*-lynx*)
921 COREFILE=lynx-core.lo
922 ;;
923 changequote(,)dnl
924 rs6000-*-aix[5-9].* | powerpc-*-aix[5-9].* | powerpc64-*-aix[5-9].*)
925 changequote([,])dnl
926 COREFILE=rs6000-core.lo
927 COREFLAG="$COREFLAG -DAIX_5_CORE -DAIX_CORE_DUMPX_CORE"
928 ;;
929 changequote(,)dnl
930 rs6000-*-aix4.[3-9]* | powerpc-*-aix4.[3-9]*)
931 changequote([,])dnl
932 COREFILE=rs6000-core.lo
933 COREFLAG="$COREFLAG -DAIX_CORE_DUMPX_CORE"
934 # Not all versions of AIX with -DAIX_CORE_DUMPX_CORE
935 # have c_impl as a member of struct core_dumpx
936 AC_MSG_CHECKING([for c_impl in struct core_dumpx])
937 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <core.h>]], [[struct core_dumpx c; c.c_impl = 0;]])],[AC_DEFINE(HAVE_ST_C_IMPL, 1,
938 [Define if struct core_dumpx has member c_impl])
939 AC_MSG_RESULT(yes)],[AC_MSG_RESULT(no)])
940 ;;
941 rs6000-*-aix4*) COREFILE=rs6000-core.lo ;;
942 rs6000-*-*) COREFILE=rs6000-core.lo ;;
943 powerpc64-*-aix*) COREFILE=rs6000-core.lo ;;
944 powerpc-*-aix4*) COREFILE=rs6000-core.lo ;;
945 powerpc-*-aix*) COREFILE=rs6000-core.lo ;;
946 powerpc-*-beos*) ;;
947 powerpc-*-freebsd* | powerpc-*-kfreebsd*-gnu)
948 COREFILE='' ;;
949 powerpc-*-netbsd*) COREFILE=netbsd-core.lo ;;
950 powerpc-*-*bsd*) COREFILE=netbsd-core.lo ;;
951 s390*-*-*) COREFILE=trad-core.lo ;;
952 sh*-*-netbsd* | sh*-*-openbsd*)
953 COREFILE=netbsd-core.lo
954 ;;
955 sparc-*-netbsd* | sparc*-*-openbsd*)
956 COREFILE=netbsd-core.lo
957 ;;
958 vax-*-netbsd* | vax-*-openbsd*)
959 COREFILE=netbsd-core.lo
960 ;;
961 vax-*-ultrix2*)
962 COREFILE=trad-core.lo
963 TRAD_HEADER='"hosts/vaxult2.h"'
964 ;;
965 vax-*-ultrix*)
966 COREFILE=trad-core.lo
967 TRAD_HEADER='"hosts/vaxult2.h"'
968 ;;
969 vax-*-linux-*)
970 COREFILE=trad-core.lo
971 TRAD_HEADER='"hosts/vaxlinux.h"'
972 ;;
973 vax-*-*)
974 COREFILE=trad-core.lo
975 TRAD_HEADER='"hosts/vaxbsd.h"'
976 ;;
977 x86_64-*-linux*)
978 CORE_HEADER='"hosts/x86-64linux.h"'
979 ;;
980 x86_64-*-netbsd* | x86_64-*-openbsd*)
981 COREFILE=netbsd-core.lo
982 ;;
983 esac
984
985 case "$COREFILE" in
986 aix386-core.lo) COREFLAG=-DAIX386_CORE ;;
987 hppabsd-core.lo) COREFLAG=-DHPPABSD_CORE ;;
988 hpux-core.lo) COREFLAG=-DHPUX_CORE ;;
989 irix-core.lo) COREFLAG=-DIRIX_CORE ;;
990 lynx-core.lo) COREFLAG=-DLYNX_CORE ;;
991 netbsd-core.lo) COREFLAG=-DNETBSD_CORE ;;
992 osf-core.lo) COREFLAG=-DOSF_CORE ;;
993 ptrace-core.lo) COREFLAG=-DPTRACE_CORE ;;
994 rs6000-core.lo) COREFLAG="$COREFLAG -DAIX_CORE" ;;
995 sco5-core.lo) COREFLAG="$COREFLAG -DSCO5_CORE" ;;
996 trad-core.lo) COREFLAG="$COREFLAG -DTRAD_CORE" ;;
997 esac
998
999 # ELF corefile support has several flavors, but all of
1000 # them use something called <sys/procfs.h>
1001 AC_CHECK_HEADERS(sys/procfs.h)
1002 if test "$ac_cv_header_sys_procfs_h" = yes; then
1003 BFD_HAVE_SYS_PROCFS_TYPE(prstatus_t)
1004 BFD_HAVE_SYS_PROCFS_TYPE(prstatus32_t)
1005 BFD_HAVE_SYS_PROCFS_TYPE_MEMBER(prstatus_t, pr_who)
1006 BFD_HAVE_SYS_PROCFS_TYPE_MEMBER(prstatus32_t, pr_who)
1007 BFD_HAVE_SYS_PROCFS_TYPE(pstatus_t)
1008 BFD_HAVE_SYS_PROCFS_TYPE(pxstatus_t)
1009 BFD_HAVE_SYS_PROCFS_TYPE(pstatus32_t)
1010 BFD_HAVE_SYS_PROCFS_TYPE(prpsinfo_t)
1011 BFD_HAVE_SYS_PROCFS_TYPE_MEMBER(prpsinfo_t, pr_pid)
1012 BFD_HAVE_SYS_PROCFS_TYPE(prpsinfo32_t)
1013 BFD_HAVE_SYS_PROCFS_TYPE_MEMBER(prpsinfo32_t, pr_pid)
1014 BFD_HAVE_SYS_PROCFS_TYPE(psinfo_t)
1015 BFD_HAVE_SYS_PROCFS_TYPE_MEMBER(psinfo_t, pr_pid)
1016 BFD_HAVE_SYS_PROCFS_TYPE(psinfo32_t)
1017 BFD_HAVE_SYS_PROCFS_TYPE_MEMBER(psinfo32_t, pr_pid)
1018 BFD_HAVE_SYS_PROCFS_TYPE(lwpstatus_t)
1019 BFD_HAVE_SYS_PROCFS_TYPE(lwpxstatus_t)
1020 BFD_HAVE_SYS_PROCFS_TYPE_MEMBER(lwpstatus_t, pr_context)
1021 BFD_HAVE_SYS_PROCFS_TYPE_MEMBER(lwpstatus_t, pr_reg)
1022 BFD_HAVE_SYS_PROCFS_TYPE_MEMBER(lwpstatus_t, pr_fpreg)
1023 BFD_HAVE_SYS_PROCFS_TYPE(win32_pstatus_t)
1024 fi
1025 fi
1026 AC_SUBST(COREFILE)
1027 AC_SUBST(COREFLAG)
1028 if test -n "$CORE_HEADER"; then
1029 AC_DEFINE_UNQUOTED(CORE_HEADER, $CORE_HEADER,
1030 [Name of host specific core header file to include in elf.c.])
1031 fi
1032 if test -n "$TRAD_HEADER"; then
1033 AC_DEFINE_UNQUOTED(TRAD_HEADER, $TRAD_HEADER,
1034 [Name of host specific header file to include in trad-core.c.])
1035 fi
1036
1037 if test "$plugins" = "yes"; then
1038 supports_plugins=1
1039 else
1040 supports_plugins=0
1041 fi
1042 AC_SUBST(supports_plugins)
1043 AC_SUBST(lt_cv_dlopen_libs)
1044
1045 # Determine the host dependent file_ptr a.k.a. off_t type. In order
1046 # prefer: off64_t - if ftello64 and fseeko64, off_t - if ftello and
1047 # fseeko, long. This assumes that sizeof off_t is .ge. sizeof long.
1048 # Hopefully a reasonable assumption since fseeko et.al. should be
1049 # upward compatible.
1050 AC_CHECK_FUNCS(ftello ftello64 fseeko fseeko64 fopen64)
1051 if test x"$ac_cv_func_ftello" = xyes -a x"$ac_cv_func_fseeko" = xyes; then
1052 AC_CHECK_SIZEOF(off_t)
1053 fi
1054 AC_MSG_CHECKING([file_ptr type])
1055 bfd_file_ptr="long"
1056 bfd_ufile_ptr="unsigned long"
1057 if test x"$ac_cv_func_ftello64" = xyes -a x"$ac_cv_func_fseeko64" = xyes \
1058 -o x"${ac_cv_sizeof_off_t}" = x8; then
1059 bfd_file_ptr=BFD_HOST_64_BIT
1060 bfd_ufile_ptr=BFD_HOST_U_64_BIT
1061 fi
1062 AC_MSG_RESULT($bfd_file_ptr)
1063 AC_SUBST(bfd_file_ptr)
1064 AC_SUBST(bfd_ufile_ptr)
1065
1066 dnl AC_CHECK_HEADERS(sys/mman.h)
1067 AC_FUNC_MMAP
1068 AC_CHECK_FUNCS(madvise mprotect)
1069 case ${want_mmap}+${ac_cv_func_mmap_fixed_mapped} in
1070 true+yes ) AC_DEFINE(USE_MMAP, 1, [Use mmap if it's available?]) ;;
1071 esac
1072
1073 rm -f doc/config.status
1074 AC_CONFIG_FILES([Makefile doc/Makefile bfd-in3.h:bfd-in2.h po/Makefile.in:po/Make-in])
1075
1076 dnl We need this duplication, even though we use AM_PO_SUBDIRS, because of
1077 dnl our two separate POTFILES. Yuck.
1078 AC_CONFIG_COMMANDS([default],
1079 [[
1080 case "$srcdir" in
1081 .) srcdirpre= ;;
1082 *) srcdirpre='$(srcdir)/' ;;
1083 esac
1084 POFILES=
1085 GMOFILES=
1086 for lang in dummy $OBSOLETE_ALL_LINGUAS; do
1087 if test $lang != dummy; then
1088 POFILES="$POFILES $srcdirpre$lang.po"
1089 GMOFILES="$GMOFILES $srcdirpre$lang.gmo"
1090 fi
1091 done
1092 sed -e '/SRC-POTFILES =/r po/SRC-POTFILES' \
1093 -e '/BLD-POTFILES =/r po/BLD-POTFILES' \
1094 -e "s,@POFILES@,$POFILES," \
1095 -e "s,@GMOFILES@,$GMOFILES," \
1096 po/Makefile.in > po/Makefile]],[[]])
1097
1098 dnl Required by html, pdf, install-pdf and install-html
1099 AC_SUBST(datarootdir)
1100 AC_SUBST(docdir)
1101 AC_SUBST(htmldir)
1102 AC_SUBST(pdfdir)
1103
1104 AC_OUTPUT
This page took 0.069542 seconds and 5 git commands to generate.