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