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