various i386-aout and i386-coff target removal
[deliverable/binutils-gdb.git] / gas / configure.ac
CommitLineData
252b5132
RH
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl And be careful when changing it! If you must add tests with square
4dnl brackets, be sure changequote invocations surround it.
5dnl
219d1afa 6dnl Copyright (C) 2012-2018 Free Software Foundation, Inc.
5bf135a7
NC
7dnl
8dnl This file is free software; you can redistribute it and/or modify
9dnl it under the terms of the GNU General Public License as published by
10dnl the Free Software Foundation; either version 3 of the License, or
11dnl (at your option) any later version.
3739860c 12dnl
5bf135a7
NC
13dnl This program is distributed in the hope that it will be useful,
14dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
15dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16dnl GNU General Public License for more details.
3739860c 17dnl
5bf135a7
NC
18dnl You should have received a copy of the GNU General Public License
19dnl along with this program; see the file COPYING3. If not see
20dnl <http://www.gnu.org/licenses/>.
252b5132
RH
21dnl
22dnl v2.5 needed for --bindir et al
da594c4a 23AC_PREREQ(2.59)
2e98a7bd
AM
24m4_include([../bfd/version.m4])
25AC_INIT([gas], BFD_VERSION)
da594c4a 26AC_CONFIG_SRCDIR(as.h)
252b5132 27
13b2be9c
DJ
28dnl Autoconf 2.57 will find the aux dir without this. However, unless
29dnl we specify this explicitly, automake-1.7 will assume that ylwrap is in
30dnl gas/ instead of gas/../.
31AC_CONFIG_AUX_DIR(..)
da594c4a 32AC_CANONICAL_TARGET
5d64ca4e 33AC_ISC_POSIX
252b5132 34
2e98a7bd 35AM_INIT_AUTOMAKE
252b5132 36
ce2cded5
L
37AC_PROG_CC
38AC_GNU_SOURCE
7357c5b6 39AC_USE_SYSTEM_EXTENSIONS
ce2cded5 40
da594c4a 41LT_INIT
b879806f 42ACX_LARGEFILE
2d7f2507 43ACX_PROG_CMP_IGNORE_INITIAL
252b5132 44
252b5132 45AC_ARG_ENABLE(targets,
241a6c40 46[ --enable-targets alternative target configurations besides the primary],
252b5132 47[case "${enableval}" in
da594c4a 48 yes | "") AC_MSG_ERROR(enable-targets option must specify target names or 'all')
252b5132
RH
49 ;;
50 no) enable_targets= ;;
51 *) enable_targets=$enableval ;;
52esac])dnl
c43a438d 53
c43a438d
AM
54ac_checking=yes
55if grep '^RELEASE=y' ${srcdir}/../bfd/Makefile.am >/dev/null 2>/dev/null ; then
56 ac_checking=
57fi
58AC_ARG_ENABLE(checking,
59[ --enable-checking enable run-time checks],
60[case "${enableval}" in
61 no|none) ac_checking= ;;
62 *) ac_checking=yes ;;
63esac])dnl
64if test x$ac_checking != x ; then
65 AC_DEFINE(ENABLE_CHECKING, 1, [Define if you want run-time sanity checks.])
66fi
67
6c3bc0f8
NC
68# PR gas/19109
69# Decide the default method for compressing debug sections.
70ac_default_compressed_debug_sections=unset
71# Provide a configure time option to override our default.
72AC_ARG_ENABLE(compressed_debug_sections,
4894d80b 73 AS_HELP_STRING([--enable-compressed-debug-sections={all,gas,none}],
27ba7c94 74 [compress debug sections by default]),
4894d80b 75[case ,"${enableval}", in
9b4c123c 76 ,yes, | ,all, | *,gas,*) ac_default_compressed_debug_sections=yes ;;
4894d80b 77 ,no, | ,none,) ac_default_compressed_debug_sections=no ;;
6c3bc0f8
NC
78 *) ac_default_compressed_debug_sections=unset ;;
79esac])dnl
80
0cb4071e
L
81# PR gas/19520
82# Decide if x86 assembler should generate relax relocations.
83ac_default_x86_relax_relocations=unset
84# Provide a configure time option to override our default.
85AC_ARG_ENABLE(x86_relax_relocations,
86 AS_HELP_STRING([--enable-x86-relax-relocations],
87 [generate x86 relax relocations by default]),
88[case "${enableval}" in
89 no) ac_default_x86_relax_relocations=0 ;;
90esac])dnl
91
b8871f35
L
92# Decide if ELF assembler should generate common symbols with the
93# STT_COMMON type.
94ac_default_elf_stt_common=unset
95# Provide a configure time option to override our default.
96AC_ARG_ENABLE(elf_stt_common,
97 AS_HELP_STRING([--enable-elf-stt-common],
98 [generate ELF common symbols with STT_COMMON type by default]),
99[case "${enableval}" in
100 yes) ac_default_elf_stt_common=1 ;;
101esac])dnl
102
252b5132
RH
103using_cgen=no
104
9e9b66a9 105AM_BINUTILS_WARNINGS
a2d91340 106
252b5132 107# Generate a header file
da594c4a 108AC_CONFIG_HEADERS(config.h:config.in)
252b5132 109
9004b6bd
AB
110dnl Option --with-cpu=TYPE allows configure type control of the default
111dnl cpu type within the assembler. Currently only the ARC target
112dnl supports this feature, but others may be added in the future.
113AC_ARG_WITH(cpu,
114 AS_HELP_STRING([--with-cpu=CPU],
115 [default cpu variant is CPU (currently only supported on ARC)]),
116 [AC_DEFINE_UNQUOTED(TARGET_WITH_CPU,
117 "${with_cpu}",
118 [Target specific CPU.])],
119 [])
120
df7b86aa
NC
121# PR 14072
122AH_VERBATIM([00_CONFIG_H_CHECK],
123[/* Check that config.h is #included before system headers
124 (this works only for glibc, but that should be enough). */
d17dce55 125#if defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__CONFIG_H__)
df7b86aa
NC
126# error config.h must be #included before system headers
127#endif
128#define __CONFIG_H__ 1])
129
76a27922
ILT
130# If we are on a DOS filesystem, we must use gdb.ini rather than
131# .gdbinit.
76a27922 132case "${host}" in
591d4689 133 *-*-msdos* | *-*-go32* | *-*-mingw32* | *-*-windows*)
76a27922 134 GDBINIT="gdb.ini"
13b2be9c
DJ
135 AC_CONFIG_FILES(gdb.ini:gdbinit.in)
136 ;;
137 *)
138 GDBINIT=".gdbinit"
139 AC_CONFIG_FILES(.gdbinit:gdbinit.in)
76a27922
ILT
140 ;;
141esac
142AC_SUBST(GDBINIT)
143
a8eb42a8 144#We need this for the host.
44f2f9d2
AM
145AC_C_BIGENDIAN
146
252b5132
RH
147te_file=generic
148
149# Makefile target for installing gas in $(tooldir)/bin.
150install_tooldir=install-exec-tooldir
151
152canon_targets=""
15886821 153all_targets=no
252b5132
RH
154if test -n "$enable_targets" ; then
155 for t in `echo $enable_targets | sed 's/,/ /g'`; do
15886821
L
156 if test $t = "all"; then
157 all_targets=yes
158 continue
159 fi
6d83c84b 160 result=`$ac_config_sub $t 2>/dev/null`
252b5132
RH
161 if test -n "$result" ; then
162 canon_targets="$canon_targets $result"
163# else
164# # Permit "all", etc. We don't support it yet though.
165# canon_targets="$canon_targets $t"
166 fi
167 done
168 GAS_UNIQ(canon_targets)
169fi
170
171emulations=""
172
173for this_target in $target $canon_targets ; do
174
14ee9f48
ILT
175 targ=${this_target}
176 . ${srcdir}/configure.tgt
177
178 case ${target_cpu} in
179 crisv32)
180 AC_DEFINE_UNQUOTED(DEFAULT_CRIS_ARCH, $arch,
181 [Default CRIS architecture.])
182 ;;
252b5132
RH
183 esac
184
185 if test ${this_target} = $target ; then
186 target_cpu_type=${cpu_type}
187 elif test ${target_cpu_type} != ${cpu_type} ; then
188 continue
189 fi
190
14ee9f48 191 generic_target=${cpu_type}-${target_vendor}-${target_os}
252b5132 192 case ${generic_target} in
79500683
AM
193 i386-*-msdosdjgpp* \
194 | i386-*-go32* \
14ee9f48
ILT
195 | i386-go32-rtems*)
196 AC_DEFINE(STRICTCOFF, 1, [Using strict COFF?])
197 ;;
79500683 198
0cb4071e
L
199 i386-*-solaris2 \
200 | x86_64-*-solaris2 \
201 | i386-*-solaris2.[[0-9]] \
202 | i386-*-solaris2.1[[01]] \
203 | x86_64-*-solaris2.1[[01]])
204 if test ${this_target} = $target \
205 && test ${ac_default_x86_relax_relocations} = unset; then
206 ac_default_x86_relax_relocations=0
207 fi
208 ;;
209
7ba29e2a
NC
210 microblaze*)
211 ;;
212
e5231592
RS
213changequote(,)dnl
214 ppc-*-aix[5-9].*)
215changequote([,])dnl
14ee9f48 216 AC_DEFINE(AIX_WEAK_SUPPORT, 1,
f8fc3443 217 [Define if using AIX 5.2 value for C_WEAKEXT.])
14ee9f48 218 ;;
14ee9f48
ILT
219 ppc-*-solaris*)
220 if test ${this_target} = $target; then
221 AC_DEFINE(TARGET_SOLARIS_COMMENT, 1,
222 [Define if default target is PowerPC Solaris.])
223 fi
224 if test x${endian} = xbig; then
225 AC_MSG_ERROR(Solaris must be configured little endian)
226 fi
227 ;;
252b5132
RH
228 esac
229
230 if test ${this_target} = $target ; then
231 endian_def=
232 if test x${endian} = xbig; then
233 endian_def=1
234 elif test x${endian} = xlittle; then
235 endian_def=0
236 fi
237 if test x${endian_def} != x; then
238 AC_DEFINE_UNQUOTED(TARGET_BYTES_BIG_ENDIAN, $endian_def,
239 [Define as 1 if big endian.])
240 fi
241 fi
242
252b5132
RH
243# Other random stuff.
244
316f5878
RS
245 case ${cpu_type} in
246 mips)
247 # Set mips_cpu to the name of the default CPU.
248 case ${target_cpu} in
249 mips | mipsbe | mipseb | mipsle | mipsel | mips64 | mips64el)
250 mips_cpu=from-abi
251 ;;
252 mipsisa32 | mipsisa32el)
253 mips_cpu=mips32
254 ;;
af7ee8bf
CD
255 mipsisa32r2 | mipsisa32r2el)
256 mips_cpu=mips32r2
257 ;;
ae52f483
AB
258 mipsisa32r3 | mipsisa32r3el)
259 mips_cpu=mips32r3
260 ;;
261 mipsisa32r5 | mipsisa32r5el)
262 mips_cpu=mips32r5
263 ;;
7361da2c
AB
264 mipsisa32r6 | mipsisa32r6el)
265 mips_cpu=mips32r6
266 ;;
316f5878
RS
267 mipsisa64 | mipsisa64el)
268 mips_cpu=mips64
269 ;;
5f74bc13
CD
270 mipsisa64r2 | mipsisa64r2el)
271 mips_cpu=mips64r2
272 ;;
ae52f483
AB
273 mipsisa64r3 | mipsisa64r3el)
274 mips_cpu=mips64r3
275 ;;
276 mipsisa64r5 | mipsisa64r5el)
277 mips_cpu=mips64r5
278 ;;
7361da2c
AB
279 mipsisa64r6 | mipsisa64r6el)
280 mips_cpu=mips64r6
281 ;;
316f5878
RS
282 mipstx39 | mipstx39el)
283 mips_cpu=r3900
284 ;;
8f6847cb
RS
285 mips64vr | mips64vrel)
286 mips_cpu=vr4100
287 ;;
5f74bc13 288 mipsisa32r2* | mipsisa64r2*)
af7ee8bf
CD
289changequote(,)dnl
290 mips_cpu=`echo $target_cpu | sed -e 's/[a-z]*..r2//' -e 's/el$//'`
7361da2c
AB
291changequote([,])dnl
292 ;;
293 mipsisa32r6* | mipsisa64r6*)
294changequote(,)dnl
295 mips_cpu=`echo $target_cpu | sed -e 's/[a-z]*..r6//' -e 's/el$//'`
af7ee8bf
CD
296changequote([,])dnl
297 ;;
316f5878
RS
298 mips64* | mipsisa64* | mipsisa32*)
299changequote(,)dnl
300 mips_cpu=`echo $target_cpu | sed -e 's/[a-z]*..//' -e 's/el$//'`
e407c74b
NC
301changequote([,])dnl
302 ;;
303 mips*)
304changequote(,)dnl
305 mips_cpu=`echo $target_cpu | sed -e 's/^mips//' -e 's/el$//'`
316f5878
RS
306changequote([,])dnl
307 ;;
308 *)
da594c4a 309 AC_MSG_ERROR($target_cpu isn't a supported MIPS CPU name)
316f5878
RS
310 ;;
311 esac
312 # See whether it's appropriate to set E_MIPS_ABI_O32 for o32
313 # binaries. It's a GNU extension that some OSes don't understand.
316f5878
RS
314 case ${target} in
315 *-*-irix*)
316 use_e_mips_abi_o32=0
317 ;;
318 *)
319 use_e_mips_abi_o32=1
320 ;;
321 esac
322 # Decide whether to generate 32-bit or 64-bit code by default.
323 # Used to resolve -march=from-abi when an embedded ABI is selected.
324 case ${target} in
325 mips64*-*-* | mipsisa64*-*-*)
326 mips_default_64bit=1
327 ;;
328 *)
329 mips_default_64bit=0
330 ;;
331 esac
cac012d6
AO
332 # Decide which ABI to target by default.
333 case ${target} in
0984958b
MR
334 mips64*-linux* | mips-sgi-irix6* | mips64*-freebsd* \
335 | mips64*-kfreebsd*-gnu | mips64*-ps2-elf*)
cac012d6
AO
336 mips_default_abi=N32_ABI
337 ;;
aeffff67 338 mips*-linux* | mips*-freebsd* | mips*-kfreebsd*-gnu)
cac012d6
AO
339 mips_default_abi=O32_ABI
340 ;;
26eebcf5
MK
341 mips64*-openbsd*)
342 mips_default_abi=N64_ABI
343 ;;
cac012d6
AO
344 *)
345 mips_default_abi=NO_ABI
346 ;;
347 esac
316f5878
RS
348 AC_DEFINE_UNQUOTED(MIPS_CPU_STRING_DEFAULT, "$mips_cpu",
349 [Default CPU for MIPS targets. ])
350 AC_DEFINE_UNQUOTED(USE_E_MIPS_ABI_O32, $use_e_mips_abi_o32,
351 [Allow use of E_MIPS_ABI_O32 on MIPS targets. ])
352 AC_DEFINE_UNQUOTED(MIPS_DEFAULT_64BIT, $mips_default_64bit,
353 [Generate 64-bit code by default on MIPS targets. ])
cac012d6
AO
354 AC_DEFINE_UNQUOTED(MIPS_DEFAULT_ABI, $mips_default_abi,
355 [Choose a default ABI for MIPS targets. ])
316f5878
RS
356 ;;
357 esac
358
252b5132
RH
359 # Do we need the opcodes library?
360 case ${cpu_type} in
0b1cf022 361 vax | tic30)
252b5132
RH
362 ;;
363
364 *)
365 need_opcodes=yes
366
367 case "${enable_shared}" in
368 yes) shared_opcodes=true ;;
369 *opcodes*) shared_opcodes=true ;;
370 *) shared_opcodes=false ;;
371 esac
252b5132
RH
372 ;;
373 esac
374
375 # Any other special object files needed ?
376 case ${cpu_type} in
07c1b327
CM
377
378 bfin)
379 echo ${extra_objects} | grep -s "bfin-parse.o"
380 if test $? -ne 0 ; then
381 extra_objects="$extra_objects bfin-parse.o"
382 fi
383
df7b86aa 384 echo ${extra_objects} | grep -s "bfin-lex-wrapper.o"
07c1b327 385 if test $? -ne 0 ; then
df7b86aa 386 extra_objects="$extra_objects bfin-lex-wrapper.o"
07c1b327
CM
387 fi
388 ;;
389
73589c9d 390 epiphany | fr30 | ip2k | iq2000 | lm32 | m32r | or1k)
252b5132
RH
391 using_cgen=yes
392 ;;
393
49f58d10
JB
394 m32c)
395 using_cgen=yes
396 ;;
0ebb9a87
DB
397 frv)
398 using_cgen=yes
399 ;;
252b5132
RH
400 m68k)
401 case ${extra_objects} in
402 *m68k-parse.o*) ;;
403 *) extra_objects="$extra_objects m68k-parse.o" ;;
404 esac
405 ;;
406
280d71bf
DB
407 mep)
408 using_cgen=yes
409 ;;
410
252b5132 411 mips)
12e64c2c 412 echo ${extra_objects} | grep -s "itbl-parse.o"
252b5132
RH
413 if test $? -ne 0 ; then
414 extra_objects="$extra_objects itbl-parse.o"
415 fi
416
df7b86aa 417 echo ${extra_objects} | grep -s "itbl-lex-wrapper.o"
252b5132 418 if test $? -ne 0 ; then
df7b86aa 419 extra_objects="$extra_objects itbl-lex-wrapper.o"
252b5132
RH
420 fi
421
12e64c2c 422 echo ${extra_objects} | grep -s "itbl-ops.o"
252b5132
RH
423 if test $? -ne 0 ; then
424 extra_objects="$extra_objects itbl-ops.o"
425 fi
426 ;;
427
4970f871 428 mt)
047af9ef
AH
429 using_cgen=yes
430 ;;
431
35c08157
KLC
432 nds32)
433 # Decide BASELINE, REDUCED_REGS, FPU_DP_EXT, FPU_SP_EXT features
434 # based on arch_name.
435 AC_MSG_CHECKING(for default configuration of --with-arch)
436 if test "x${with_arch}" != x; then
437 case ${with_arch} in
438 v2j | v2s | v2f | v2 | v3m | v3j | v3s | v3f | v3 )
439 AC_DEFINE_UNQUOTED(NDS32_DEFAULT_ARCH_NAME, "$with_arch",
440 [Define value for nds32_arch_name])
441 ;;
442 *)
443 AC_MSG_ERROR(This kind of arch name does *NOT* exist!)
444 ;;
445 esac
446 fi
447 AC_MSG_RESULT($with_arch)
448
449 # Decide features one by one.
450 AC_MSG_CHECKING(for default configuration of --enable-dx-regs)
6cd8405e 451 if test "x${enable_dx_regs}" = xyes; then
35c08157
KLC
452 AC_DEFINE(NDS32_DEFAULT_DX_REGS, 1,
453 [Define value for nds32_dx_regs])
454 else
455 AC_DEFINE(NDS32_DEFAULT_DX_REGS, 0,
456 [Define default value for nds32_dx_regs])
457 fi
458 AC_MSG_RESULT($enable_dx_regs)
459
460 AC_MSG_CHECKING(for default configuration of --enable-perf-ext)
6cd8405e 461 if test "x${enable_perf_ext}" = xno; then
35c08157
KLC
462 AC_DEFINE(NDS32_DEFAULT_PERF_EXT, 0,
463 [Define value for nds32_perf_ext])
464 else
465 AC_DEFINE(NDS32_DEFAULT_PERF_EXT, 1,
466 [Define default value for nds32_perf_ext])
467 fi
468 AC_MSG_RESULT($enable_perf_ext)
469
470 AC_MSG_CHECKING(for default configuration of --enable-perf-ext2)
6cd8405e 471 if test "x${enable_perf_ext2}" = xno; then
35c08157
KLC
472 AC_DEFINE(NDS32_DEFAULT_PERF_EXT2, 0,
473 [Define value for nds32_perf_ext2])
474 else
475 AC_DEFINE(NDS32_DEFAULT_PERF_EXT2, 1,
476 [Define default value for nds32_perf_ext2])
477 fi
478 AC_MSG_RESULT($enable_perf_ext2)
479
480 AC_MSG_CHECKING(for default configuration of --enable-string-ext)
6cd8405e 481 if test "x${enable_string_ext}" = xno; then
35c08157
KLC
482 AC_DEFINE(NDS32_DEFAULT_STRING_EXT, 0,
483 [Define value for nds32_string_ext])
484 else
485 AC_DEFINE(NDS32_DEFAULT_STRING_EXT, 1,
486 [Define default value for nds32_string_ext])
487 fi
488 AC_MSG_RESULT($enable_string_ext)
489
490 AC_MSG_CHECKING(for default configuration of --enable-audio-ext)
6cd8405e 491 if test "x${enable_audio_ext}" = xno; then
35c08157
KLC
492 AC_DEFINE(NDS32_DEFAULT_AUDIO_EXT, 0,
493 [Define value for nds32_audio_ext])
494 else
495 AC_DEFINE(NDS32_DEFAULT_AUDIO_EXT, 1,
496 [Define default value for nds32_audio_ext])
497 fi
498 AC_MSG_RESULT($enable_audio_ext)
499 ;;
500
3c0367d0 501 aarch64 | i386 | riscv | s390 | sparc)
252b5132
RH
502 if test $this_target = $target ; then
503 AC_DEFINE_UNQUOTED(DEFAULT_ARCH, "${arch}", [Default architecture.])
504 fi
505 ;;
93fbbb04 506
99c513f6
DD
507 rl78)
508 echo ${extra_objects} | grep -s "rl78-parse.o"
509 if test $? -ne 0 ; then
510 extra_objects="$extra_objects rl78-parse.o"
511 fi
512 ;;
513
c7927a3c
NC
514 rx)
515 echo ${extra_objects} | grep -s "rx-parse.o"
516 if test $? -ne 0 ; then
517 extra_objects="$extra_objects rx-parse.o"
518 fi
519 ;;
520
93fbbb04
GK
521 xstormy16)
522 using_cgen=yes
523 ;;
524
d70c5fc7
NC
525 xc16x)
526 using_cgen=yes
527 ;;
528
e0001a05
NC
529 xtensa)
530 echo ${extra_objects} | grep -s "xtensa-relax.o"
531 if test $? -ne 0 ; then
532 extra_objects="$extra_objects xtensa-relax.o"
533 fi
534 ;;
535
252b5132
RH
536 *)
537 ;;
538 esac
539
540 if test $using_cgen = yes ; then
541 case "x${extra_objects}" in
542 *cgen.o*) ;;
543 *) extra_objects="$extra_objects cgen.o" ;;
544 esac
545 fi
546
547# See if we really can support this configuration with the emulation code.
548
549 if test $this_target = $target ; then
252b5132
RH
550 obj_format=$fmt
551 te_file=$em
252b5132
RH
552 fi
553
b11d79f2
TG
554 case ${te_file} in
555 vms) extra_objects="$extra_objects te-vms.o" ;;
556 esac
58797674 557
252b5132
RH
558# From target name and format, produce a list of supported emulations.
559
560 case ${generic_target}-${fmt} in
e8044f35 561 mips-*-*-*) case "$endian" in
252b5132
RH
562 big) emulation="mipsbelf mipslelf mipself" ;;
563 *) emulation="mipslelf mipsbelf mipself" ;;
252b5132 564 esac ;;
119caedd
L
565 # i386-pc-pe-coff != i386-pc-coff.
566 i386-*-pe-coff) ;;
4c63da97
AM
567 # Uncommenting the next line will turn on support for i386 AOUT
568 # for the default linux configuration
569 # i386-*-linux*-elf) emulation="i386elf i386aout" ;;
570 #
571 i386-*-aout) emulation="i386aout" ;;
4ca72d38 572 i386-*-coff) emulation="i386coff" ;;
4c63da97 573 i386-*-elf) emulation="i386elf" ;;
3bcbcc3d 574
f9c19112
HPN
575 # Always all formats. The first stated emulation becomes the default.
576 cris-*-*aout*) emulation="crisaout criself" ;;
577 cris-*-*) emulation="criself crisaout" ;;
252b5132
RH
578 esac
579
580 emulations="$emulations $emulation"
581
582done
583
0cb4071e
L
584if test ${ac_default_x86_relax_relocations} = unset; then
585 ac_default_x86_relax_relocations=1
586fi
587AC_DEFINE_UNQUOTED(DEFAULT_GENERATE_X86_RELAX_RELOCATIONS,
588 $ac_default_x86_relax_relocations,
589 [Define to 1 if you want to generate x86 relax relocations by default.])
590
b8871f35
L
591if test ${ac_default_elf_stt_common} = unset; then
592 ac_default_elf_stt_common=0
593fi
594AC_DEFINE_UNQUOTED(DEFAULT_GENERATE_ELF_STT_COMMON,
595 $ac_default_elf_stt_common,
596 [Define to 1 if you want to generate ELF common symbols with the
597 STT_COMMON type by default.])
598
348ef89a 599if test x$ac_default_compressed_debug_sections = xyes ; then
6c3bc0f8
NC
600 AC_DEFINE(DEFAULT_FLAG_COMPRESS_DEBUG, 1, [Define if you want compressed debug sections by default.])
601fi
e12fe555 602
15886821
L
603# Turn on all targets if possible
604if test ${all_targets} = "yes"; then
605 case ${target_cpu_type} in
606 i386)
607 case ${obj_format} in
608 aout)
609 emulations="$emulations i386coff i386elf"
610 ;;
611 coff)
612 emulations="$emulations i386aout i386elf"
613 ;;
614 elf)
615 emulations="$emulations i386aout i386coff"
616 ;;
617 esac
618 ;;
99ad8390
NC
619 x86_64)
620 case ${obj_format} in
621 aout)
622 emulations="$emulations i386coff i386elf"
623 ;;
624 coff)
625 emulations="$emulations i386aout i386elf"
626 ;;
627 elf)
628 emulations="$emulations i386aout i386coff"
629 ;;
630 esac
631 ;;
15886821
L
632 esac
633fi
634
39871c07
AM
635# PE code has way too many macros tweaking behaviour
636case ${te_file} in
637 pe*) emulations="" ;;
638esac
639
252b5132
RH
640# Assign floating point type. Most processors with FP support
641# IEEE FP. On those that don't support FP at all, usually IEEE
642# is emulated.
643case ${target_cpu} in
12e64c2c 644 vax | pdp11 ) atof=vax ;;
252b5132
RH
645 *) atof=ieee ;;
646esac
647
648case "${obj_format}" in
649 "") AC_MSG_ERROR(GAS does not know what format to use for target ${target}) ;;
650esac
651
652# Unfortunately the cpu in cpu-opc.h file isn't always $(TARGET_CPU).
653cgen_cpu_prefix=""
654if test $using_cgen = yes ; then
655 case ${target_cpu} in
73589c9d
CS
656 or1knd)
657 cgen_cpu_prefix=or1k ;;
252b5132
RH
658 *) cgen_cpu_prefix=${target_cpu} ;;
659 esac
660 AC_SUBST(cgen_cpu_prefix)
661 AC_DEFINE(USING_CGEN, 1, [Using cgen code?])
662fi
663
664dnl
665dnl Make sure the desired support files exist.
666dnl
667
668if test ! -r ${srcdir}/config/tc-${target_cpu_type}.c; then
669 AC_MSG_ERROR(GAS does not support target CPU ${target_cpu_type})
670fi
671
672if test ! -r ${srcdir}/config/obj-${obj_format}.c; then
673 AC_MSG_ERROR(GAS does not have support for object file format ${obj_format})
674fi
675
252b5132
RH
676# Some COFF configurations want these random other flags set.
677case ${obj_format} in
678 coff)
679 case ${target_cpu_type} in
680 i386) AC_DEFINE(I386COFF, 1, [Using i386 COFF?]) ;;
99ad8390 681 x86_64) AC_DEFINE(I386COFF, 1, [Using i386 COFF?]) ;;
252b5132
RH
682 esac
683 ;;
684esac
685
686# Getting this done right is going to be a bitch. Each configuration specified
7be1c489
AM
687# with --enable-targets=... should be checked for environment, format, cpu
688# setting.
252b5132
RH
689#
690# For each configuration, the necessary object file support code must be linked
691# in. This might be only one, it might be up to four. The necessary emulation
692# code needs to be provided, too.
693#
694# And then there's "--enable-targets=all"....
695#
e8044f35 696# For now, just always do it for MIPS ELF configurations. Sigh.
252b5132
RH
697
698formats="${obj_format}"
699emfiles=""
700EMULATIONS=""
701GAS_UNIQ(emulations)
702for em in . $emulations ; do
703 case $em in
704 .) continue ;;
97238fbd 705 mipsbelf | mipslelf | mipself)
252b5132 706 fmt=elf file=mipself ;;
0aa5d426
HPN
707 *coff)
708 fmt=coff file=$em ;;
709 *aout)
710 fmt=aout file=$em ;;
711 *elf)
712 fmt=elf file=$em ;;
252b5132
RH
713 esac
714 formats="$formats $fmt"
715 emfiles="$emfiles e-$file.o"
716 EMULATIONS="$EMULATIONS &$em,"
717done
718GAS_UNIQ(formats)
719GAS_UNIQ(emfiles)
720if test `set . $formats ; shift ; echo $#` -gt 1 ; then
721 for fmt in $formats ; do
722 case $fmt in
723 aout) AC_DEFINE(OBJ_MAYBE_AOUT, 1, [a.out support?]) ;;
252b5132
RH
724 coff) AC_DEFINE(OBJ_MAYBE_COFF, 1, [COFF support?]) ;;
725 ecoff) AC_DEFINE(OBJ_MAYBE_ECOFF, 1, [ECOFF support?]) ;;
726 elf) AC_DEFINE(OBJ_MAYBE_ELF, 1, [ELF support?]) ;;
727 generic) AC_DEFINE(OBJ_MAYBE_GENERIC, 1, [generic support?]) ;;
252b5132 728 som) AC_DEFINE(OBJ_MAYBE_SOM, 1, [SOM support?]) ;;
252b5132
RH
729 esac
730 extra_objects="$extra_objects obj-$fmt.o"
731 done
732 obj_format=multi
733fi
734if test `set . $emfiles ; shift ; echo $#` -gt 0 ; then
252b5132 735 DEFAULT_EMULATION=`set . $emulations ; echo $2`
e8044f35 736 # e-mipself has more than one emulation per file, e-i386* has just one at the
4ca72d38
AM
737 # moment. If only one emulation is specified, then don't define
738 # USE_EMULATIONS or include any of the e-files as they will only be bloat.
739 case "${obj_format}${emfiles}" in
e8044f35 740 multi* | *mipself*)
4ca72d38
AM
741 extra_objects="$extra_objects $emfiles"
742 AC_DEFINE(USE_EMULATIONS, 1, [Use emulation support?]) ;;
743 esac
252b5132
RH
744fi
745AC_SUBST(extra_objects)
746AC_DEFINE_UNQUOTED(EMULATIONS, $EMULATIONS, [Supported emulations.])
747AC_DEFINE_UNQUOTED(DEFAULT_EMULATION, "$DEFAULT_EMULATION",
748 [Default emulation.])
749
252b5132
RH
750reject_dev_configs=yes
751
752case ${reject_dev_configs}-${dev} in
753 yes-yes) # Oops.
754 AC_MSG_ERROR(GAS does not support the ${generic_target} configuration.)
755 ;;
756esac
757
758AC_SUBST(target_cpu_type)
759AC_SUBST(obj_format)
760AC_SUBST(te_file)
761AC_SUBST(install_tooldir)
762AC_SUBST(atof)
763dnl AC_SUBST(emulation)
764
252b5132
RH
765# do we need the opcodes library?
766case "${need_opcodes}" in
767yes)
768 OPCODES_LIB=../opcodes/libopcodes.la
769 ;;
770esac
771
252b5132
RH
772AC_SUBST(OPCODES_LIB)
773
252b5132
RH
774AC_DEFINE_UNQUOTED(TARGET_ALIAS, "${target_alias}", [Target alias.])
775AC_DEFINE_UNQUOTED(TARGET_CANONICAL, "${target}", [Canonical target.])
776AC_DEFINE_UNQUOTED(TARGET_CPU, "${target_cpu}", [Target CPU.])
777AC_DEFINE_UNQUOTED(TARGET_VENDOR, "${target_vendor}", [Target vendor.])
778AC_DEFINE_UNQUOTED(TARGET_OS, "${target_os}", [Target OS.])
779
252b5132
RH
780AC_PROG_YACC
781AM_PROG_LEX
782
e184813f 783ALL_LINGUAS="es fi fr id ja ru rw sv tr uk zh_CN"
20e95c23
DJ
784ZW_GNU_GETTEXT_SISTER_DIR
785AM_PO_SUBDIRS
252b5132
RH
786
787AM_MAINTAINER_MODE
d5fbea21 788AM_CONDITIONAL(GENINSRC_NEVER, false)
252b5132
RH
789AC_EXEEXT
790
58797674 791AC_CHECK_HEADERS(string.h stdlib.h memory.h strings.h unistd.h errno.h sys/types.h limits.h locale.h time.h sys/stat.h)
208a4923 792ACX_HEADER_STRING
252b5132
RH
793
794# Put this here so that autoconf's "cross-compiling" message doesn't confuse
795# people who are not cross-compiling but are compiling cross-assemblers.
796AC_MSG_CHECKING(whether compiling a cross-assembler)
797if test "${host}" = "${target}"; then
798 cross_gas=no
799else
800 cross_gas=yes
801 AC_DEFINE(CROSS_COMPILE, 1, [Compiling cross-assembler?])
802fi
803AC_MSG_RESULT($cross_gas)
804
805dnl ansidecl.h will deal with const
da594c4a 806dnl AC_C_CONST
252b5132
RH
807AC_FUNC_ALLOCA
808AC_C_INLINE
809
810# VMS doesn't have unlink.
811AC_CHECK_FUNCS(unlink remove, break)
4b0296ce 812AC_CHECK_FUNCS(sbrk setlocale)
1ec4b9f2 813AC_CHECK_FUNCS(strsignal)
252b5132 814
44350750
NC
815AM_LC_MESSAGES
816
39bec121
TW
817# do we need the math library?
818case "${need_libm}" in
12e64c2c 819yes)
da594c4a 820 LT_LIB_M
39bec121
TW
821 AC_SUBST(LIBM)
822 ;;
823esac
824
252b5132
RH
825# Some non-ANSI preprocessors botch requoting inside strings. That's bad
826# enough, but on some of those systems, the assert macro relies on requoting
827# working properly!
828GAS_WORKING_ASSERT
829
830# On some systems, the system header files may not declare malloc, realloc,
831# and free. There are places where gas needs these functions to have been
832# declared -- such as when taking their addresses.
833gas_test_headers="
834#ifdef HAVE_MEMORY_H
835#include <memory.h>
836#endif
837#ifdef HAVE_STRING_H
838#include <string.h>
839#else
840#ifdef HAVE_STRINGS_H
841#include <strings.h>
842#endif
843#endif
844#ifdef HAVE_STDLIB_H
845#include <stdlib.h>
846#endif
847#ifdef HAVE_UNISTD_H
848#include <unistd.h>
849#endif
850"
252b5132
RH
851
852# Does errno.h declare errno, or do we have to add a separate declaration
853# for it?
854GAS_CHECK_DECL_NEEDED(errno, f, int f, [
855#ifdef HAVE_ERRNO_H
856#include <errno.h>
857#endif
858])
859
56f36663
NC
860AC_MSG_CHECKING(for a known getopt prototype in unistd.h)
861AC_CACHE_VAL(gas_cv_decl_getopt_unistd_h,
da594c4a 862[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <unistd.h>], [extern int getopt (int, char *const*, const char *);])],
56f36663
NC
863gas_cv_decl_getopt_unistd_h=yes, gas_cv_decl_getopt_unistd_h=no)])
864AC_MSG_RESULT($gas_cv_decl_getopt_unistd_h)
865if test $gas_cv_decl_getopt_unistd_h = yes; then
866 AC_DEFINE([HAVE_DECL_GETOPT], 1,
867 [Is the prototype for getopt in <unistd.h> in the expected format?])
868fi
869
e8a38df5
AL
870GAS_CHECK_DECL_NEEDED(environ, f, char **f, $gas_test_headers)
871GAS_CHECK_DECL_NEEDED(ffs, f, int (*f)(int), $gas_test_headers)
872GAS_CHECK_DECL_NEEDED(free, f, void (*f)(), $gas_test_headers)
873GAS_CHECK_DECL_NEEDED(malloc, f, char *(*f)(), $gas_test_headers)
874GAS_CHECK_DECL_NEEDED(sbrk, f, char *(*f)(), $gas_test_headers)
875GAS_CHECK_DECL_NEEDED(strstr, f, char *(*f)(), $gas_test_headers)
876
2a7f4fa9 877AC_CHECK_DECLS([free, getenv, malloc, mempcpy, realloc, stpcpy, strstr, vsnprintf, asprintf])
6d74f28b 878
c973bc5c
NC
879BFD_BINARY_FOPEN
880
543b7933
L
881# Link in zlib if we can. This allows us to write compressed debug sections.
882AM_ZLIB
0acf065b 883
b11d79f2
TG
884# Support for VMS timestamps via cross compile
885
886if test "$ac_cv_header_time_h" = yes; then
887 GAS_HAVE_TIME_TYPE_MEMBER(struct tm, tm_gmtoff)
888fi
889
890if test "$ac_cv_header_sys_stat_h" = yes; then
891 GAS_HAVE_SYS_STAT_TYPE_MEMBER(struct stat, st_mtim, tv_sec)
892 GAS_HAVE_SYS_STAT_TYPE_MEMBER(struct stat, st_mtim, tv_nsec)
893fi
894
895
31dd3154 896dnl Required for html, pdf, install-pdf and install-html targets.
108a6f8e
CD
897AC_SUBST(datarootdir)
898AC_SUBST(docdir)
899AC_SUBST(htmldir)
31dd3154 900AC_SUBST(pdfdir)
108a6f8e 901
252b5132
RH
902dnl This must come last.
903
904dnl We used to make symlinks to files in the source directory, but now
905dnl we just use the right name for .c files, and create .h files in
906dnl the build directory which include the right .h file. Make sure
907dnl the old symlinks don't exist, so that a reconfigure in an existing
908dnl directory behaves reasonably.
909
13b2be9c
DJ
910AC_CONFIG_FILES(Makefile doc/Makefile po/Makefile.in:po/Make-in)
911AC_CONFIG_COMMANDS([default],
252b5132
RH
912[rm -f targ-cpu.c targ-cpu.h obj-format.h obj-format.c targ-env.h atof-targ.c itbl-cpu.h
913 echo '#include "tc-'"${target_cpu_type}"'.h"' > targ-cpu.h
914 echo '#include "obj-'"${obj_format}"'.h"' > obj-format.h
915 echo '#include "te-'"${te_file}"'.h"' > targ-env.h
916 echo '#include "itbl-'"${target_cpu_type}"'.h"' > itbl-cpu.h
917 if test "x$cgen_cpu_prefix" != x ; then
918 echo '#include "opcodes/'"${cgen_cpu_prefix}"'-desc.h"' > cgen-desc.h
20e95c23 919 fi],
252b5132
RH
920[target_cpu_type=${target_cpu_type}
921 cgen_cpu_prefix=${cgen_cpu_prefix}
922 obj_format=${obj_format}
923 te_file=${te_file}])
13b2be9c
DJ
924
925AC_OUTPUT
This page took 1.357539 seconds and 4 git commands to generate.