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