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