Make clean targets work also when SUBDIRS is empty.
[deliverable/binutils-gdb.git] / gas / configure.in
CommitLineData
b11fb939
KR
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
b11fb939 6dnl
833c46e1 7AC_PREREQ(2.3)dnl We only need 2.0, but pre-2.3 loses on some AIX version.
28d3e4a3 8AC_INIT(as.h)dnl
b11fb939 9dnl
bdee23af 10bfd_gas=no
318b02b6 11user_bfd_gas=
b11fb939
KR
12AC_ARG_ENABLE(bfd-assembler,
13[ bfd-assembler use BFD back end for writing object files],
14[case "${enableval}" in
318b02b6
KR
15 yes) need_bfd=yes user_bfd_gas=yes ;;
16 no) user_bfd_gas=no ;;
b11fb939
KR
17 *) AC_MSG_ERROR(bad value ${enableval} given for bfd-assembler option) ;;
18esac])dnl
19
20# Generate a header file -- gets more post-processing by Makefile later.
21AC_CONFIG_HEADER(conf)
22
23dnl For recursion to work right, this must be an absolute pathname.
24AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/..)
25AC_CANONICAL_SYSTEM
bf111c9f 26AC_ARG_PROGRAM
7cf4d7ff 27
b678740d
RP
28emulation=generic
29
b11fb939 30# assign cpu type
5f8a3788 31
b53ccaac
ILT
32# check for architecture variants
33case ${target_cpu} in
8cac6ca6 34 hppa*) cpu_type=hppa ;;
b11fb939 35changequote(,)dnl
904b6037 36 i[45]86) cpu_type=i386 ;;
82489ea0 37 m680[012346]0) cpu_type=m68k ;;
8cac6ca6
KR
38 m68008) cpu_type=m68k ;;
39 m683??) cpu_type=m68k ;;
b11fb939 40changequote([,])dnl
8cac6ca6 41 m8*) cpu_type=m88k ;;
5f8a3788 42 mips*el) cpu_type=mips endian=little;;
b11fb939 43 mips*) cpu_type=mips endian=big ;;
8370e93e
MM
44 powerpcle*) cpu_type=ppc endian=little;;
45 powerpc*) cpu_type=ppc endian=big;;
1c11ab0e 46 rs6000*) cpu_type=ppc ;;
f2889110
KR
47 sparc64) cpu_type=sparc obj_format=elf
48 AC_DEFINE(sparcv9) ;;
8cac6ca6 49 sparclite*) cpu_type=sparc ;;
7cf4d7ff 50 *) cpu_type=${target_cpu} ;;
b53ccaac
ILT
51esac
52
634233a3
KR
53# do we need the opcodes library?
54case ${cpu_type} in
55 alpha | vax)
634233a3
KR
56 ;;
57 *)
b11fb939 58 OPCODES_LIB="../opcodes/libopcodes.a"
634233a3
KR
59 ;;
60esac
b11fb939 61AC_SUBST(OPCODES_LIB)
634233a3 62
b53ccaac 63gas_target=${cpu_type}
f70a4714 64generic_target=${cpu_type}-${target_vendor}-${target_os}
8cac6ca6
KR
65dev=no
66
74cc5508 67# assign object format
f70a4714 68case ${generic_target} in
b418bc52
KR
69 a29k-amd-udi) obj_format=coff gas_target=ebmon29k ;;
70 a29k-amd-ebmon) obj_format=coff gas_target=ebmon29k ;;
833c46e1 71 a29k-*-vxworks*) obj_format=coff ;;
7cf4d7ff 72
c25be7f4 73 alpha-*-netware*) obj_format=ecoff ;;
34de45f9 74 alpha-*-osf*) obj_format=ecoff ;;
816153a3 75
4181c985
KR
76# start-sanitize-arc
77 arc-*-elf*) obj_format=elf bfd_gas=yes ;;
78# end-sanitize-arc
79
f2889110 80 arm-*-riscix*) obj_format=aout ;;
318b02b6 81
c25be7f4 82 hppa-*-*elf*) obj_format=elf emulation=hppa ;;
55ac59da 83 hppa-*-lites*) obj_format=elf emulation=hppa ;;
c25be7f4 84 hppa-*-osf*) obj_format=som emulation=hppa ;;
7cf4d7ff 85 hppa-*-hpux*) obj_format=som emulation=hppa ;;
5f8a3788 86 hppa-*-bsd*) obj_format=som emulation=hppa ;;
f8693e71 87 hppa-*-hiux*) obj_format=som emulation=hppa ;;
7cf4d7ff 88
b418bc52 89 h8300-*-coff) obj_format=coff ;;
8f4b9142 90
b418bc52 91 i386-ibm-aix*) obj_format=coff gas_target=i386coff
7cf4d7ff
KR
92 emulation=i386aix ;;
93 i386-*-bsd*) obj_format=aout emulation=386bsd ;;
b418bc52 94 i386-*-netbsd0.8) obj_format=aout emulation=386bsd ;;
0cb42d6f 95 i386-*-netbsd*) obj_format=aout emulation=nbsd bfd_gas=yes;;
833c46e1 96 i386-*-linux*aout*) obj_format=aout emulation=linux ;;
b418bc52 97 i386-*-linux*coff*) obj_format=coff emulation=linux
8cac6ca6 98 gas_target=i386coff ;;
833c46e1 99 i386-*-linux*) obj_format=elf emulation=linux ;;
b418bc52 100 i386-*-lynxos*) obj_format=coff gas_target=i386coff
8cac6ca6
KR
101 emulation=lynx ;;
102 i386-*-sysv4* | i386-*-solaris* | i386-*-elf)
103 obj_format=elf ;;
104 i386-*-coff | i386-*-sysv* | i386-*-sco* | i386-*-isc*)
b418bc52 105 obj_format=coff gas_target=i386coff ;;
420065a5 106 i386-*-vsta) obj_format=aout ;;
b418bc52 107 i386-*-go32) obj_format=coff gas_target=i386coff ;;
c54c7aac 108 i386-*-gnu*elf*) obj_format=elf ;;
de66fe1f
KR
109 i386-*-mach* | i386-*-gnu*)
110 obj_format=aout emulation=mach bfd_gas=yes ;;
c54c7aac 111 i386-*-msdos*) obj_format=aout ;;
7cf4d7ff 112
c25be7f4 113 i960-*-bout) obj_format=bout ;;
b418bc52 114 i960-*-coff) obj_format=coff emulation=ic960 gas_target=ic960coff ;;
c25be7f4
KR
115 i960-*-nindy*) obj_format=bout ;;
116 i960-*-vxworks4*) obj_format=bout ;;
117 i960-*-vxworks5.0) obj_format=bout ;;
b418bc52 118 i960-*-vxworks5.*) obj_format=coff emulation=ic960 gas_target=ic960coff ;;
c25be7f4 119 i960-*-vxworks*) obj_format=bout ;;
7cf4d7ff 120
833c46e1 121 m68k-*-vxworks* | m68k-ericsson-ose | m68k-*-sunos*)
7cf4d7ff 122 obj_format=aout emulation=sun3 ;;
b418bc52
KR
123 m68k-motorola-sysv) obj_format=coff gas_target=m68kcoff emulation=delta ;;
124 m68k-bull-sysv3*) obj_format=coff gas_target=m68kcoff emulation=dpx2 ;;
125 m68k-apollo-*) obj_format=coff gas_target=apollo emulation=apollo ;;
8cac6ca6 126 m68k-*-coff | m68k-*-sysv*)
b418bc52 127 obj_format=coff gas_target=m68kcoff ;;
833c46e1 128 m68k-*-elf) obj_format=elf ;;
f2889110 129 m68k-*-hpux*) obj_format=hp300 emulation=hp300 ;;
b418bc52 130 m68k-*-lynxos*) obj_format=coff gas_target=m68kcoff
8cac6ca6 131 emulation=lynx ;;
0cb42d6f 132 m68k-*-netbsd*) obj_format=aout emulation=nbsd bfd_gas=yes ;;
7cf4d7ff 133
b418bc52 134 m88k-*-coff*) obj_format=coff gas_target=m88kcoff ;;
c978e704 135
7cf4d7ff 136 # don't change emulation like *-*-bsd does
5cda0c7a
KR
137 mips-dec-bsd*) obj_format=aout gas_target=mips-lit ;;
138 mips-sony-bsd*) obj_format=ecoff gas_target=mips-big ;;
139 mips-*-bsd*) AC_MSG_ERROR(Unknown vendor for mips-bsd configuration.) ;;
7cf4d7ff 140 mips-*-ultrix*) obj_format=ecoff gas_target=mips-lit ;;
5f8a3788 141 mips-*-ecoff*) obj_format=ecoff
b11fb939
KR
142 case "$endian" in
143 big) gas_target=mips-big ;;
144 *) gas_target=mips-lit ;;
145 esac
5f8a3788 146 ;;
47fcc4f5 147 mips-*-ecoff*) obj_format=ecoff gas_target=mips-big ;;
5cda0c7a
KR
148 mips-*-gnu*) obj_format=aout
149 case "$endian" in
150 big) gas_target=mips-big ;;
151 *) gas_target=mips-lit ;;
152 esac
153 ;;
00f4e659 154 mips-*-irix5*) obj_format=elf gas_target=mips-big ;;
20ae2fb8 155 mips-*-irix*) obj_format=ecoff gas_target=mips-big ;;
8cac6ca6
KR
156 mips-*-riscos*) obj_format=ecoff gas_target=mips-big ;;
157 mips-*-sysv*) obj_format=ecoff gas_target=mips-big ;;
5f8a3788 158 mips-*-elf*) obj_format=elf
b11fb939
KR
159 case "$endian" in
160 big) gas_target=mips-big ;;
161 *) gas_target=mips-lit ;;
162 esac
5f8a3788 163 ;;
f2889110 164 ppc-*-aix*) obj_format=coff ;;
8370e93e
MM
165 ppc-*-elf* | ppc-*-eabi* | ppc-*-sysv4*)
166 obj_format=elf
167 case "$endian" in
168 big) gas_target=ppc-big ;;
169 *) gas_target=ppc-lit ;;
170 esac
171 ;;
904b6037 172 ppc-*-netware*) obj_format=elf emulation=ppcnw ;;
1c11ab0e 173
b418bc52 174 sh-*-coff) obj_format=coff ;;
816153a3 175
03c4ce2f
MT
176# start-sanitize-rce
177 rce-*-aout) obj_format=aout ;;
178# end-sanitize-rce
d94aca1a 179
4181c985 180 ns32k-pc532-mach*) obj_format=aout emulation=pc532mach ;;
f2889110 181 ns32k-pc532-netbsd*) obj_format=aout emulation=nbsd532 ;;
904b6037 182
d94aca1a
MT
183 sparc-*-sunos4*) obj_format=aout emulation=sun3 ;;
184 sparc-*-aout | sparc*-*-vxworks)
f2889110 185 obj_format=aout ;;
d94aca1a
MT
186 sparc-*-coff) obj_format=coff ;;
187 sparc-*-lynxos*) obj_format=coff emulation=lynx ;;
188 sparc-fujitsu-none) obj_format=aout ;;
189 sparc-*-elf | sparc*-*-solaris*)
8cac6ca6 190 obj_format=elf ;;
d94aca1a 191 sparc-*-netbsd*) obj_format=aout emulation=nbsd bfd_gas=yes ;;
7cf4d7ff 192
5677c028
KR
193 vax-*-bsd* | vax-*-ultrix*)
194 obj_format=aout ;;
8cac6ca6 195 vax-*-vms) obj_format=vms ;;
a8285504 196
8cac6ca6 197 z8k-*-coff | z8k-*-sim)
b418bc52 198 obj_format=coff ;;
07ef2075 199
c54c7aac
KR
200 w65-*-*) obj_format=coff ;;
201
8cac6ca6 202 *-*-aout | *-*-scout)
7cf4d7ff 203 obj_format=aout ;;
8cac6ca6 204 *-*-nindy*)
7cf4d7ff 205 obj_format=bout ;;
8cac6ca6 206 *-*-bsd*)
7cf4d7ff
KR
207 obj_format=aout emulation=sun3 ;;
208 *-*-generic) obj_format=generic ;;
b418bc52
KR
209 *-*-xray | *-*-hms) obj_format=coff ;;
210 *-*-sim) obj_format=coff ;;
8cac6ca6 211 *-*-elf | *-*-sysv4* | *-*-solaris*)
b11fb939 212 AC_MSG_WARN(GAS support for ELF format is incomplete)
8cac6ca6 213 obj_format=elf dev=yes ;;
7cf4d7ff 214 *-*-vxworks) obj_format=aout ;;
5f8a3788 215 *-*-netware) obj_format=elf ;;
fecd2382
RP
216esac
217
8cac6ca6
KR
218# Assign floating point type. Most processors with FP support
219# IEEE FP. On those that don't support FP at all, usually IEEE
220# is emulated.
b678740d 221case ${target_cpu} in
904b6037 222 vax | tahoe ) atof=${target_cpu} ;;
7cf4d7ff 223 *) atof=ieee ;;
fecd2382
RP
224esac
225
8cac6ca6 226case "${obj_format}" in
b11fb939 227 "") AC_MSG_ERROR(GAS does not know what format to use for target ${target}) ;;
8cac6ca6 228esac
7cf4d7ff 229
b11fb939
KR
230dnl
231dnl Make sure the desired support files exist.
232dnl
233
fb589130 234if test ! -r ${srcdir}/config/tc-${cpu_type}.c; then
b11fb939
KR
235 AC_MSG_ERROR(GAS does not support target CPU ${cpu_type})
236fi
237
fb589130 238if test ! -r ${srcdir}/config/obj-${obj_format}.c; then
b11fb939 239 AC_MSG_ERROR(GAS does not have support for object file format ${obj_format})
7cf4d7ff
KR
240fi
241
8a24a37c
SC
242# and target makefile frag
243
b11fb939 244target_frag=${srcdir}/config/${gas_target}.mt
f2889110
KR
245if test ! -r ${target_frag}; then
246 target_frag=/dev/null # ick! but subst_file can't be conditionalized
247fi
b11fb939 248AC_SUBST_FILE(target_frag)
8a24a37c 249
318b02b6 250case ${cpu_type}-${obj_format} in
f2889110 251 arm-*) bfd_gas=yes ;;
318b02b6
KR
252# not yet
253# i386-aout) bfd_gas=preferred ;;
f2889110
KR
254 mips-*) bfd_gas=yes ;;
255 ns32k-*) bfd_gas=yes ;;
256 ppc-*) bfd_gas=yes ;;
d94aca1a 257 sparc-*) bfd_gas=yes ;;
7cf4d7ff
KR
258 *-elf) bfd_gas=yes ;;
259 *-ecoff) bfd_gas=yes ;;
5f8a3788 260 *-som) bfd_gas=yes ;;
7cf4d7ff
KR
261 *) ;;
262esac
263
318b02b6 264case ${user_bfd_gas}-${bfd_gas} in
a8285504 265 yes-yes | no-no)
7cf4d7ff
KR
266 # We didn't override user's choice.
267 ;;
a8285504 268 no-yes)
b11fb939 269 AC_MSG_WARN(Use of BFD is required for ${target}; overriding config options.)
7cf4d7ff 270 ;;
a8285504
DZ
271 no-preferred)
272 bfd_gas=no
273 ;;
274 *-preferred)
275 bfd_gas=yes
276 ;;
f2889110
KR
277 yes-*)
278 bfd_gas=yes
279 ;;
a8285504
DZ
280 -*)
281 # User specified nothing.
282 ;;
7cf4d7ff
KR
283esac
284
318b02b6
KR
285case ${bfd_gas}-${cpu_type}-${obj_format} in
286 yes-*-coff) need_bfd=yes ;;
287 no-*-coff) need_bfd=yes
288 AC_DEFINE(MANY_SEGMENTS) ;;
289esac
290
69ecc03f 291reject_dev_configs=yes
8cac6ca6
KR
292
293case ${reject_dev_configs}-${dev} in
294 yes-yes) # Oops.
b11fb939 295 AC_MSG_ERROR(GAS does not support the ${generic_target} configuration.)
8cac6ca6
KR
296 ;;
297esac
298
833c46e1
KR
299AC_SUBST(cpu_type)
300AC_SUBST(obj_format)
301AC_SUBST(atof)
302AC_SUBST(emulation)
303
28d3e4a3 304AC_LINK_FILES(config/tc-${cpu_type}.c config/tc-${cpu_type}.h \
74cc5508 305 config/obj-${obj_format}.h config/obj-${obj_format}.c \
28d3e4a3
KR
306 config/te-${emulation}.h config/atof-${atof}.c,
307 targ-cpu.c targ-cpu.h obj-format.h obj-format.c targ-env.h atof-targ.c)
8b228fe9 308
b11fb939
KR
309case "${bfd_gas}" in
310 yes) AC_DEFINE(BFD_ASSEMBLER)
311 need_bfd=yes ;;
4f6f4aa8
KR
312esac
313
b11fb939
KR
314case "${need_bfd}" in
315 yes) BFDLIB=../bfd/libbfd.a
316 ALL_OBJ_DEPS="$ALL_OBJ_DEPS ../bfd/bfd.h"
c92d9ee9 317 ;;
4f6f4aa8 318esac
b11fb939
KR
319AC_SUBST(BFDLIB)
320AC_SUBST(ALL_OBJ_DEPS)
4f6f4aa8 321
b11fb939
KR
322AC_DEFINE_UNQUOTED(TARGET_ALIAS, "${target_alias}")
323AC_DEFINE_UNQUOTED(TARGET_CANONICAL, "${target}")
324AC_DEFINE_UNQUOTED(TARGET_CPU, "${target_cpu}")
325AC_DEFINE_UNQUOTED(TARGET_VENDOR, "${target_vendor}")
326AC_DEFINE_UNQUOTED(TARGET_OS, "${target_os}")
327
b11fb939
KR
328AC_PROG_CC
329AC_PROG_INSTALL
330
b11fb939
KR
331AC_CHECK_HEADERS(string.h stdlib.h memory.h strings.h unistd.h stdarg.h varargs.h errno.h sys/types.h)
332
bf111c9f
KR
333# Put this here so that autoconf's "cross-compiling" message doesn't confuse
334# people who are not cross-compiling but are compiling cross-assemblers.
335AC_MSG_CHECKING(whether compiling a cross-assembler)
336if test "${host}" = "${target}"; then
f2889110
KR
337 cross_gas=no
338else
bf111c9f
KR
339 cross_gas=yes
340 AC_DEFINE(CROSS_COMPILE)
bf111c9f
KR
341fi
342AC_MSG_RESULT($cross_gas)
343
b11fb939
KR
344dnl ansidecl.h will deal with const
345dnl AC_CONST
346AC_FUNC_ALLOCA
347AC_C_INLINE
348
f2889110
KR
349# VMS doesn't have unlink.
350AC_CHECK_FUNCS(unlink remove, break)
28d3e4a3 351
b11fb939
KR
352# Some non-ANSI preprocessors botch requoting inside strings. That's bad
353# enough, but on some of those systems, the assert macro relies on requoting
354# working properly!
bf111c9f 355GAS_WORKING_ASSERT
b11fb939
KR
356
357# On some systems, the system header files may not declare malloc, realloc,
358# and free. There are places where gas needs these functions to have been
359# declared -- such as when taking their addresses.
bf111c9f 360gas_test_headers="
b11fb939
KR
361#ifdef HAVE_MEMORY_H
362#include <memory.h>
363#endif
364#ifdef HAVE_STRING_H
365#include <string.h>
366#endif
367#ifdef HAVE_STDLIB_H
368#include <stdlib.h>
369#endif
370#ifdef HAVE_UNISTD_H
371#include <unistd.h>
372#endif
bf111c9f
KR
373"
374GAS_CHECK_DECL_NEEDED(malloc, f, char *(*f)(), $gas_test_headers)
375GAS_CHECK_DECL_NEEDED(free, f, int f, $gas_test_headers)
b11fb939
KR
376
377# Does errno.h declare errno, or do we have to add a separate declaration
378# for it?
bf111c9f 379GAS_CHECK_DECL_NEEDED(errno, f, int f, [
b11fb939
KR
380#ifdef HAVE_ERRNO_H
381#include <errno.h>
382#endif
bf111c9f 383])
b11fb939
KR
384
385AC_CONFIG_SUBDIRS(testsuite)
386
387dnl This must come last.
28d3e4a3 388AC_OUTPUT(Makefile doc/Makefile .gdbinit:gdbinit.in)
This page took 0.180573 seconds and 4 git commands to generate.