Add new command line option '--encoding' to strings
[deliverable/binutils-gdb.git] / gas / configure.in
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
6dnl
7dnl v2.5 needed for --bindir et al
8AC_PREREQ(2.13)
9AC_INIT(as.h)
10
11AC_CANONICAL_SYSTEM
5d64ca4e 12AC_ISC_POSIX
252b5132 13
27b7e12d
AM
14changequote(,)dnl
15BFD_VERSION=`sed -n -e 's/^.._INIT_AUTOMAKE.*,[ ]*\([^ ]*\)[ ]*).*/\1/p' < ${srcdir}/../bfd/configure.in`
16changequote([,])dnl
17AM_INIT_AUTOMAKE(gas, ${BFD_VERSION})
252b5132
RH
18
19AM_PROG_LIBTOOL
20
21user_bfd_gas=
22AC_ARG_ENABLE(bfd-assembler,
23[ --enable-bfd-assembler use BFD back end for writing object files],
24[case "${enableval}" in
25 yes) need_bfd=yes user_bfd_gas=yes ;;
26 no) user_bfd_gas=no ;;
27 *) AC_MSG_ERROR(bad value ${enableval} given for bfd-assembler option) ;;
28esac])dnl
29AC_ARG_ENABLE(targets,
30[ targets alternative target configurations besides the primary],
31[case "${enableval}" in
32 yes | "") AC_ERROR(enable-targets option must specify target names or 'all')
33 ;;
34 no) enable_targets= ;;
35 *) enable_targets=$enableval ;;
36esac])dnl
37AC_ARG_ENABLE(commonbfdlib,
38[ --enable-commonbfdlib build shared BFD/opcodes/libiberty library],
39[case "${enableval}" in
40 yes) commonbfdlib=true ;;
41 no) commonbfdlib=false ;;
42 *) AC_MSG_ERROR([bad value ${enableval} for BFD commonbfdlib option]) ;;
43esac])dnl
44
45using_cgen=no
46
0218d1e4 47build_warnings="-W -Wall -Wstrict-prototypes -Wmissing-prototypes"
a2d91340
AC
48AC_ARG_ENABLE(build-warnings,
49[ --enable-build-warnings Enable build-time compiler warnings if gcc is used],
50[case "${enableval}" in
51 yes) ;;
52 no) build_warnings="-w";;
53 ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
54 build_warnings="${build_warnings} ${t}";;
55 *,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
56 build_warnings="${t} ${build_warnings}";;
57 *) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
58esac
59if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
60 echo "Setting warning flags = $build_warnings" 6>&1
61fi])dnl
62WARN_CFLAGS=""
63if test "x${build_warnings}" != x -a "x$GCC" = xyes ; then
64 WARN_CFLAGS="${build_warnings}"
65fi
66AC_SUBST(WARN_CFLAGS)
67
252b5132
RH
68# Generate a header file
69AM_CONFIG_HEADER(config.h:config.in)
70
76a27922
ILT
71# If we are on a DOS filesystem, we must use gdb.ini rather than
72# .gdbinit.
73GDBINIT=".gdbinit"
74case "${host}" in
75 *-*-msdos* | *-*-go32* | *-*-mingw32* | *-*-cygwin* | *-*-windows*)
76 GDBINIT="gdb.ini"
77 ;;
78esac
79AC_SUBST(GDBINIT)
80
252b5132
RH
81te_file=generic
82
83# Makefile target for installing gas in $(tooldir)/bin.
84install_tooldir=install-exec-tooldir
85
86canon_targets=""
15886821 87all_targets=no
252b5132
RH
88if test -n "$enable_targets" ; then
89 for t in `echo $enable_targets | sed 's/,/ /g'`; do
15886821
L
90 if test $t = "all"; then
91 all_targets=yes
92 continue
93 fi
6d83c84b 94 result=`$ac_config_sub $t 2>/dev/null`
252b5132
RH
95 if test -n "$result" ; then
96 canon_targets="$canon_targets $result"
97# else
98# # Permit "all", etc. We don't support it yet though.
99# canon_targets="$canon_targets $t"
100 fi
101 done
102 GAS_UNIQ(canon_targets)
103fi
104
105emulations=""
106
107for this_target in $target $canon_targets ; do
108
109changequote(,)dnl
110 eval `echo $this_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/cpu=\1 vendor=\2 os=\3/'`
111changequote([,])dnl
112
113 # check for architecture variants
114 arch=
115 endian=
116 case ${cpu} in
117 alpha*) cpu_type=alpha ;;
118 armeb) cpu_type=arm endian=big ;;
119 arm*) cpu_type=arm endian=little ;;
120 armb*) cpu_type=arm endian=little ;;
121 armv*l) cpu_type=arm endian=little ;;
122 armv*b) cpu_type=arm endian=big ;;
a1059aed 123 xscale*) cpu_type=arm endian=little ;;
252b5132
RH
124 strongarm*) cpu_type=arm endian=little ;;
125 thumb*) cpu_type=arm endian=little ;;
126 hppa*) cpu_type=hppa ;;
127changequote(,)dnl
81c425d1 128 i[3456]86) cpu_type=i386 arch=i386;;
c0d8940f 129 x86_64) cpu_type=i386 arch=x86_64;;
800eeca4 130 ia64) cpu_type=ia64 ;;
6f6ef0fa 131 m6811|m6812|m68hc12) cpu_type=m68hc11 ;;
252b5132
RH
132 m680[012346]0) cpu_type=m68k ;;
133changequote([,])dnl
134 m68008) cpu_type=m68k ;;
135 m683??) cpu_type=m68k ;;
136 m5200) cpu_type=m68k ;;
137 m8*) cpu_type=m88k ;;
138 mips*el) cpu_type=mips endian=little ;;
139 mips*) cpu_type=mips endian=big ;;
041dd5a9
ILT
140 pjl*) cpu_type=pj endian=little ;;
141 pj*) cpu_type=pj endian=big ;;
0baf16f2 142 powerpc*le*) cpu_type=ppc endian=little ;;
252b5132
RH
143 powerpc*) cpu_type=ppc endian=big ;;
144 rs6000*) cpu_type=ppc ;;
a85d7ed0
NC
145 s390x*) cpu_type=s390 arch=s390x ;;
146 s390*) cpu_type=s390 arch=s390 ;;
252b5132
RH
147 sparclite*) cpu_type=sparc arch=sparclite ;;
148 sparclet*) cpu_type=sparc arch=sparclet ;;
149 sparc64*) cpu_type=sparc arch=v9-64 ;;
150 sparc86x*) cpu_type=sparc arch=sparc86x ;;
151 sparc*) cpu_type=sparc arch=sparclite ;; # ??? See tc-sparc.c.
152 v850*) cpu_type=v850 ;;
153 *) cpu_type=${cpu} ;;
154 esac
155
156 if test ${this_target} = $target ; then
157 target_cpu_type=${cpu_type}
158 elif test ${target_cpu_type} != ${cpu_type} ; then
159 continue
160 fi
161
162 generic_target=${cpu_type}-$vendor-$os
163 dev=no
164 bfd_gas=no
165 em=generic
166
167 # assign object format
168 case ${generic_target} in
169 a29k-*-coff) fmt=coff ;;
170 a29k-amd-udi) fmt=coff ;;
171 a29k-amd-ebmon) fmt=coff ;;
172 a29k-nyu-sym1) fmt=coff ;;
5f68c319 173 a29k-*-rtems*) fmt=coff ;;
252b5132
RH
174 a29k-*-vxworks*) fmt=coff ;;
175
176 alpha*-*-*vms*) fmt=evax ;;
177 alpha*-*-netware*) fmt=ecoff ;;
178 alpha*-*-openbsd*) fmt=ecoff ;;
179 alpha*-*-osf*) fmt=ecoff ;;
180 alpha*-*-linuxecoff*) fmt=ecoff ;;
181 alpha*-*-linux-gnu*) fmt=elf em=linux ;;
182 alpha*-*-netbsd*) fmt=elf em=nbsd ;;
183
184 arc-*-elf*) fmt=elf bfd_gas=yes ;;
185
186 arm-*-aout) fmt=aout ;;
187 arm-*-coff | thumb-*-coff) fmt=coff ;;
5f68c319 188 arm-*-rtems | thumb-*-rtems) fmt=elf ;;
252b5132 189 arm-*-elf | thumb-*-elf) fmt=elf ;;
0decc840 190 arm*-*-conix*) fmt=elf ;;
252b5132 191 arm-*-linux*aout*) fmt=aout em=linux ;;
222f8079
PB
192 arm*-*-linux-gnu* | arm*-*-uclinux*)
193 fmt=elf em=linux ;;
c1e73230 194 arm-*-netbsd*) fmt=aout em=nbsd ;;
252b5132
RH
195 arm-*-oabi | thumb-*-oabi) fmt=elf ;;
196 arm-epoc-pe | thumb-epoc-pe) fmt=coff em=epoc-pe ;;
c1e73230 197 arm-*-wince) fmt=coff em=wince-pe ;;
252b5132
RH
198 arm-*-pe | thumb-*-pe) fmt=coff em=pe ;;
199 arm-*-riscix*) fmt=aout em=riscix ;;
87748b32 200 arm-*-vxworks) fmt=coff ;;
252b5132 201
adde6300
AM
202 avr-*-*) fmt=elf bfd_gas=yes ;;
203
3bcbcc3d
HPN
204 cris-*-*) fmt=multi bfd_gas=yes ;;
205
252b5132
RH
206 d10v-*-*) fmt=elf bfd_gas=yes ;;
207 d30v-*-*) fmt=elf bfd_gas=yes ;;
208
209
210 fr30-*-*) fmt=elf bfd_gas=yes ;;
211
ad1079af
AM
212 hppa-*-linux-gnu*) case ${cpu} in
213 hppa*64*)
214 fmt=elf em=hppalinux64;;
215 hppa*)
216 fmt=elf em=linux;;
217 esac ;;
252b5132
RH
218 hppa-*-*elf*) fmt=elf em=hppa ;;
219 hppa-*-lites*) fmt=elf em=hppa ;;
220 hppa-*-osf*) fmt=som em=hppa ;;
221 hppa-*-rtems*) fmt=elf em=hppa ;;
ad1079af 222 hppa-*-hpux11*) case ${cpu} in
c9e10a08 223 hppa*64*)
ad1079af 224 fmt=elf em=hppa64 ;;
c9e10a08 225 hppa*)
ad1079af
AM
226 fmt=som em=hppa ;;
227 esac ;;
252b5132
RH
228 hppa-*-hpux*) fmt=som em=hppa ;;
229 hppa-*-mpeix*) fmt=som em=hppa ;;
230 hppa-*-bsd*) fmt=som em=hppa ;;
231 hppa-*-hiux*) fmt=som em=hppa ;;
232
5f68c319 233 h8300-*-rtems*) fmt=coff ;;
252b5132 234 h8300-*-coff) fmt=coff ;;
ccad732d 235 h8300-*-elf) fmt=elf ;;
e66457fb
AM
236 h8500-*-rtems*) fmt=coff ;;
237 h8500-*-coff) fmt=coff ;;
252b5132 238
5b93d8bb 239 i370-*-elf* | i370-*-linux*) fmt=elf ;;
252b5132
RH
240 i386-ibm-aix*) fmt=coff em=i386aix ;;
241 i386-sequent-bsd*) fmt=aout em=dynix bfd_gas=yes ;;
242 i386-*-beospe*) fmt=coff em=pe bfd_gas=yes ;;
243 i386-*-beoself* | i386-*-beos*) fmt=elf bfd_gas=yes ;;
244 i386-*-bsd*) fmt=aout em=386bsd ;;
245 i386-*-netbsd0.8) fmt=aout em=386bsd ;;
7ed28e65 246 i386-*-netbsdelf*) fmt=elf em=nbsd bfd_gas=yes ;;
252b5132
RH
247 i386-*-netbsd*) fmt=aout em=nbsd bfd_gas=yes;;
248 i386-*-openbsd*) fmt=aout em=nbsd bfd_gas=yes;;
c709b096 249 i386-*-linux*aout* | i386-*-linux*oldld) fmt=aout em=linux ;;
252b5132
RH
250 i386-*-linux*coff*) fmt=coff em=linux ;;
251 i386-*-linux-gnu*) fmt=elf em=linux bfd_gas=yes ;;
c0d8940f 252 x86_64-*-linux-gnu*) fmt=elf em=linux bfd_gas=yes ;;
252b5132 253 i386-*-lynxos*) fmt=coff em=lynx ;;
f98fd99f 254changequote(,)dnl
fc997f4b
AM
255 i386-*-sysv[45]* | i386-*-solaris* | i386-*-elf)
256 fmt=elf bfd_gas=yes ;;
008960a5
ILT
257 i386-*-freebsdaout* | i386-*-freebsd[12].* | i386-*-freebsd[12])
258 fmt=aout em=386bsd ;;
f98fd99f 259changequote([,])dnl
252b5132
RH
260 i386-*-coff | i386-*-sysv* | i386-*-sco3.2v5*coff | i386-*-isc*)
261 fmt=coff ;;
262 i386-*-sco3.2v5*) fmt=elf
263 if test ${this_target} = $target; then
264 AC_DEFINE(SCO_ELF, 1,
265 [Define if defaulting to ELF on SCO 5.])
266 fi
267 ;;
268 i386-*-sco3.2*) fmt=coff ;;
269 i386-*-vsta) fmt=aout ;;
270 i386-*-msdosdjgpp* | i386-*-go32* | i386-go32-rtems*)
349a994c 271 fmt=coff em=go32 bfd_gas=yes
56385375
L
272 AC_DEFINE(STRICTCOFF, 1, [Using strict COFF?])
273 ;;
53f3de98 274 i386-*-rtemself*) fmt=elf ;;
f6314f3e
PB
275 i386-*-rtemscoff*) fmt=coff ;;
276 i386-*-rtems*) fmt=elf ;;
252b5132
RH
277 i386-*-gnu*) fmt=elf ;;
278 i386-*-mach*)
279 fmt=aout em=mach bfd_gas=yes ;;
280 i386-*-msdos*) fmt=aout ;;
281 i386-*-moss*) fmt=elf ;;
c1e73230 282 i386-*-pe) fmt=coff em=pe bfd_gas=yes ;;
252b5132 283 i386-*-cygwin*) fmt=coff em=pe bfd_gas=yes ;;
9750fcc5 284 i386-*-interix*) fmt=coff em=interix bfd_gas=yes ;;
252b5132 285 i386-*-mingw32*) fmt=coff em=pe bfd_gas=yes ;;
c1e73230 286 i386-*-*nt*) fmt=coff em=pe bfd_gas=yes ;;
29fe79d3 287 i386-*-vxworks*) fmt=aout ;;
59ff2774 288 i386-*-chaos) fmt=elf ;;
aa8c34c3
JE
289 i860-stardent-sysv4* | i860-stardent-elf*)
290 fmt=elf bfd_gas=yes endian=little
291 AC_MSG_WARN(GAS support for ${generic_target} is preliminary and a work in progress) ;;
252b5132
RH
292 i960-*-bout) fmt=bout ;;
293 i960-*-coff) fmt=coff em=ic960 ;;
294 i960-*-rtems*) fmt=coff em=ic960 ;;
295 i960-*-nindy*) fmt=bout ;;
296 i960-*-vxworks4*) fmt=bout ;;
297 i960-*-vxworks5.0) fmt=bout ;;
298 i960-*-vxworks5.*) fmt=coff em=ic960 ;;
299 i960-*-vxworks*) fmt=bout ;;
bedf545c 300 i960-*-elf*) fmt=elf ;;
252b5132 301
800eeca4 302 ia64-*-elf*) fmt=elf ;;
7463c317 303 ia64-*-aix*) fmt=elf em=ia64aix ;;
800eeca4 304 ia64-*-linux-gnu*) fmt=elf em=linux ;;
44f5c83a 305 ia64-*-hpux*) fmt=elf em=hpux ;;
800eeca4 306
252b5132
RH
307 m32r-*-*) fmt=elf bfd_gas=yes ;;
308
60bcf0fa
NC
309 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*)fmt=elf bfd_gas=yes ;;
310
252b5132
RH
311 m68k-*-vxworks* | m68k-ericsson-ose | m68k-*-sunos*)
312 fmt=aout em=sun3 ;;
313 m68k-motorola-sysv*) fmt=coff em=delta ;;
314 m68k-bull-sysv3*) fmt=coff em=dpx2 ;;
315 m68k-apollo-*) fmt=coff em=apollo ;;
316 m68k-*-sysv4*) # must be before -sysv*
317 fmt=elf em=svr4 ;;
318 m68k-*-elf*) fmt=elf ;;
f6314f3e 319 m68k-*-coff | m68k-*-sysv* | m68k-*-rtemscoff*)
252b5132 320 fmt=coff ;;
f6314f3e 321 m68k-*-rtems*) fmt=elf ;;
252b5132
RH
322 m68k-*-hpux*) fmt=hp300 em=hp300 ;;
323 m68k-*-linux*aout*) fmt=aout em=linux ;;
324 m68k-*-linux-gnu*) fmt=elf em=linux ;;
325 m68k-*-gnu*) fmt=elf ;;
326 m68k-*-lynxos*) fmt=coff em=lynx ;;
327 m68k-*-netbsd*) fmt=aout em=nbsd bfd_gas=yes ;;
328 m68k-*-openbsd*) fmt=aout em=nbsd bfd_gas=yes ;;
329 m68k-apple-aux*) fmt=coff em=aux ;;
330 m68k-*-psos*) fmt=elf em=psos;;
331
332 m88k-motorola-sysv3*) fmt=coff em=delt88 ;;
333 m88k-*-coff*) fmt=coff ;;
334
335 mcore-*-elf) fmt=elf bfd_gas=yes ;;
336 mcore-*-pe) fmt=coff em=pe bfd_gas=yes ;;
337
338 # don't change em like *-*-bsd does
339 mips-dec-netbsd*) fmt=elf endian=little ;;
340 mips-dec-openbsd*) fmt=elf endian=little ;;
341 mips-dec-bsd*) fmt=aout endian=little ;;
342 mips-sony-bsd*) fmt=ecoff ;;
343 mips-*-bsd*) AC_MSG_ERROR(Unknown vendor for mips-bsd configuration.) ;;
344 mips-*-ultrix*) fmt=ecoff endian=little ;;
345 mips-*-osf*) fmt=ecoff endian=little ;;
346 mips-*-ecoff*) fmt=ecoff ;;
056350c6 347 mips-*-pe*) fmt=coff endian=little em=pe ;;
252b5132
RH
348 mips-*-irix6*) fmt=elf ;;
349 mips-*-irix5*) fmt=elf ;;
350 mips-*-irix*) fmt=ecoff ;;
351 mips-*-lnews*) fmt=ecoff em=lnews ;;
352 mips-*-riscos*) fmt=ecoff ;;
4008bd9b 353 mips*-*-linux*)
df3bcd6f
L
354 fmt=elf em=tmips
355 AC_DEFINE(MIPS_STABS_ELF, 1,
356 [Use ELF stabs for MIPS, not ECOFF stabs])
357 ;;
f85f789b
L
358 mips-*-sysv4*MP* | mips-*-gnu*)
359 fmt=elf em=tmips ;;
252b5132 360 mips-*-sysv*) fmt=ecoff ;;
af9539e4 361 mips-*-elf* | mips-*-rtems* | mips-*-openbsd*)
252b5132
RH
362 fmt=elf ;;
363 mips-*-vxworks*) fmt=elf
364 AC_DEFINE(MIPS_STABS_ELF, 1,
365 [Use ELF stabs for MIPS, not ECOFF stabs])
366 ;;
367 mn10200-*-*) fmt=elf bfd_gas=yes ;;
368 mn10300-*-*) fmt=elf bfd_gas=yes ;;
c7e40348 369 openrisc-*-*) fmt=elf bfd_gas=yes ;;
041dd5a9 370 pj*) fmt=elf ;;
252b5132
RH
371 ppc-*-pe | ppc-*-cygwin* | ppc-*-winnt*)
372 fmt=coff em=pe ;;
373 ppc-*-aix*) fmt=coff ;;
374 ppc-*-beos*) fmt=coff ;;
375 ppc-*-*bsd* | ppc-*-elf* | ppc-*-eabi* | ppc-*-sysv4*)
376 fmt=elf ;;
377 ppc-*-linux-gnu*) fmt=elf
378 case "$endian" in
379 big) ;;
380 *) AC_MSG_ERROR(GNU/Linux must be configured big endian) ;;
381 esac
382 ;;
383 ppc-*-solaris*) fmt=elf
384 if test ${this_target} = $target; then
385 AC_DEFINE(TARGET_SOLARIS_COMMENT, 1,
386 [Define if default target is PowerPC Solaris.])
387 fi
388 if test x${endian} = xbig; then
389 AC_MSG_ERROR(Solaris must be configured little endian)
390 fi
391 ;;
392 ppc-*-rtems*) fmt=elf ;;
393 ppc-*-macos* | ppc-*-mpw*)
394 fmt=coff em=macos ;;
395 ppc-*-netware*) fmt=elf em=ppcnw ;;
e4a86f6f 396 ppc-*-vxworks*) fmt=elf ;;
252b5132 397
a85d7ed0
NC
398 s390x-*-linux-gnu*) fmt=elf em=linux ;;
399 s390-*-linux-gnu*) fmt=elf em=linux ;;
400
d07ed2cd 401 sh-*-linux*) fmt=elf em=linux ;;
252b5132 402 sh-*-elf*) fmt=elf ;;
e135f41b 403 sh-*-coff*) fmt=coff bfd_gas=yes;;
056350c6 404 sh-*-pe*) fmt=coff em=pe bfd_gas=yes;;
53f3de98 405 sh-*-rtemself*) fmt=elf ;;
e135f41b 406 sh-*-rtems*) fmt=coff bfd_gas=yes;;
252b5132
RH
407
408 ns32k-pc532-mach* | ns32k-pc532-ux*) fmt=aout em=pc532mach ;;
409 ns32k-pc532-netbsd* | ns32k-pc532-lites*) fmt=aout em=nbsd532 ;;
410 ns32k-pc532-openbsd*) fmt=aout em=nbsd532 ;;
411
5f68c319
NC
412 sparc-*-rtemsaout*) fmt=aout ;;
413 sparc-*-rtemself*) fmt=elf ;;
414 sparc-*-rtems*) fmt=elf ;;
252b5132
RH
415 sparc-*-sunos4*) fmt=aout em=sun3 ;;
416 sparc-*-aout | sparc*-*-vxworks*)
417 fmt=aout em=sparcaout ;;
418 sparc-*-coff) fmt=coff ;;
419 sparc-*-linux*aout*) fmt=aout em=linux ;;
420 sparc-*-linux-gnu*) fmt=elf em=linux ;;
421 sparc-*-lynxos*) fmt=coff em=lynx ;;
422 sparc-fujitsu-none) fmt=aout ;;
423 sparc-*-elf | sparc-*-sysv4* | sparc-*-solaris*)
424 fmt=elf ;;
98e5953c
JL
425 sparc-*-netbsd*) em=nbsd bfd_gas=yes
426 case ${cpu} in
427 sparc) case ${os} in
428 *elf*) fmt=elf ;;
429 *) fmt=aout ;;
430 esac ;;
431 sparc64) fmt=elf ;;
432 esac
433 ;;
252b5132
RH
434 sparc-*-openbsd*) fmt=aout em=nbsd ;;
435
436 strongarm-*-coff) fmt=coff ;;
437 strongarm-*-elf) fmt=elf ;;
077b8428
NC
438 xscale-*-coff) fmt=coff ;;
439 xscale-*-elf) fmt=elf ;;
252b5132
RH
440
441 tic30-*-*aout*) fmt=aout bfd_gas=yes ;;
442 tic30-*-*coff*) fmt=coff bfd_gas=yes ;;
39bec121
TW
443 tic54x-*-* | c54x*-*-*)
444 fmt=coff bfd_gas=yes need_libm=yes;;
252b5132
RH
445 tic80-*-*) fmt=coff ;;
446
447 v850-*-*) fmt=elf bfd_gas=yes ;;
448 v850e-*-*) fmt=elf bfd_gas=yes ;;
449 v850ea-*-*) fmt=elf bfd_gas=yes ;;
450
451 vax-*-bsd* | vax-*-ultrix*)
452 fmt=aout ;;
453 vax-*-vms) fmt=vms ;;
454
455
456 z8k-*-coff | z8k-*-sim)
457 fmt=coff ;;
458
459 w65-*-*) fmt=coff ;;
460
461 *-*-aout | *-*-scout)
462 fmt=aout ;;
1c33f1da 463 *-*-freebsd*) fmt=elf em=freebsd bfd_gas=yes ;;
252b5132
RH
464 *-*-nindy*)
465 fmt=bout ;;
466 *-*-bsd*)
467 fmt=aout em=sun3 ;;
468 *-*-generic) fmt=generic ;;
469 *-*-xray | *-*-hms) fmt=coff ;;
470 *-*-sim) fmt=coff ;;
471 *-*-elf | *-*-sysv4* | *-*-solaris*)
472 AC_MSG_WARN(GAS support for ${generic_target} is incomplete.)
473 fmt=elf dev=yes ;;
474 *-*-vxworks) fmt=aout ;;
475 *-*-netware) fmt=elf ;;
476 esac
477
478 if test ${this_target} = $target ; then
479 endian_def=
480 if test x${endian} = xbig; then
481 endian_def=1
482 elif test x${endian} = xlittle; then
483 endian_def=0
484 fi
485 if test x${endian_def} != x; then
486 AC_DEFINE_UNQUOTED(TARGET_BYTES_BIG_ENDIAN, $endian_def,
487 [Define as 1 if big endian.])
488 fi
489 fi
490
491 case ${cpu_type}-${fmt} in
492 alpha*-*) bfd_gas=yes ;;
493 arm-*) bfd_gas=yes ;;
494 # not yet
495 # i386-aout) bfd_gas=preferred ;;
800eeca4 496 ia64*-*) bfd_gas=yes ;;
252b5132
RH
497 mips-*) bfd_gas=yes ;;
498 ns32k-*) bfd_gas=yes ;;
e135f41b 499 pdp11-*) bfd_gas=yes ;;
252b5132
RH
500 ppc-*) bfd_gas=yes ;;
501 sparc-*) bfd_gas=yes ;;
502 strongarm-*) bfd_gas=yes ;;
e972090a 503 xscale-*) bfd_gas=yes ;;
252b5132
RH
504 *-elf) bfd_gas=yes ;;
505 *-ecoff) bfd_gas=yes ;;
506 *-som) bfd_gas=yes ;;
4c63da97
AM
507 #enable bfd for coff and aout to allow testing if a bfd target is
508 #the primary target, but not for coff or aout as the primary target
4ca72d38 509 i386-coff) if test x${primary_bfd_gas} = xyes; then bfd_gas=yes; fi ;;
4c63da97 510 i386-aout) if test x${primary_bfd_gas} = xyes; then bfd_gas=yes; fi ;;
252b5132
RH
511 *) ;;
512 esac
513
514# Other random stuff.
515
516 # Do we need the opcodes library?
517 case ${cpu_type} in
518 vax | i386 | tic30)
519 ;;
520
521 *)
522 need_opcodes=yes
523
524 case "${enable_shared}" in
525 yes) shared_opcodes=true ;;
526 *opcodes*) shared_opcodes=true ;;
527 *) shared_opcodes=false ;;
528 esac
529 if test "${shared_opcodes}" = "true"; then
530 # A shared libopcodes must be linked against libbfd.
531 need_bfd=yes
532 fi
533 ;;
534 esac
535
536 # Any other special object files needed ?
537 case ${cpu_type} in
c7e40348 538 fr30 | m32r | openrisc)
252b5132
RH
539 using_cgen=yes
540 ;;
541
542 m68k)
543 case ${extra_objects} in
544 *m68k-parse.o*) ;;
545 *) extra_objects="$extra_objects m68k-parse.o" ;;
546 esac
547 ;;
548
a85d7ed0
NC
549 s390)
550 if test $this_target = $target ; then
551 AC_DEFINE_UNQUOTED(DEFAULT_ARCH, "${arch}", [Default architecture.])
552 fi
553 ;;
554
252b5132
RH
555 mips)
556 echo ${extra_objects} | grep -s "itbl-parse.o"
557 if test $? -ne 0 ; then
558 extra_objects="$extra_objects itbl-parse.o"
559 fi
560
561 echo ${extra_objects} | grep -s "itbl-lex.o"
562 if test $? -ne 0 ; then
563 extra_objects="$extra_objects itbl-lex.o"
564 fi
565
566 echo ${extra_objects} | grep -s "itbl-ops.o"
567 if test $? -ne 0 ; then
568 extra_objects="$extra_objects itbl-ops.o"
569 fi
570 ;;
571
b96d3a20
JH
572 i386)
573 if test $this_target = $target ; then
574 AC_DEFINE_UNQUOTED(DEFAULT_ARCH, "${arch}", [Default architecture.])
575 fi
576 ;;
252b5132
RH
577 sparc)
578 if test $this_target = $target ; then
579 AC_DEFINE_UNQUOTED(DEFAULT_ARCH, "${arch}", [Default architecture.])
580 fi
581 ;;
582 *)
583 ;;
584 esac
585
586 if test $using_cgen = yes ; then
587 case "x${extra_objects}" in
588 *cgen.o*) ;;
589 *) extra_objects="$extra_objects cgen.o" ;;
590 esac
591 fi
592
593# See if we really can support this configuration with the emulation code.
594
595 if test $this_target = $target ; then
596 primary_bfd_gas=$bfd_gas
597 obj_format=$fmt
598 te_file=$em
599
600 if test $bfd_gas = no ; then
601 # Can't support other configurations this way.
602 break
603 fi
604 elif test $bfd_gas = no ; then
605 # Can't support this configuration.
606 break
607 fi
608
609# From target name and format, produce a list of supported emulations.
610
611 case ${generic_target}-${fmt} in
612 mips-*-irix5*-*) emulation="mipsbelf mipslelf mipself mipsbecoff mipslecoff mipsecoff" ;;
4008bd9b 613 mips*-*-linux*-*) case "$endian" in
df3bcd6f
L
614 big) emulation="mipsbelf mipslelf mipself" ;;
615 *) emulation="mipslelf mipsbelf mipself" ;;
252b5132
RH
616 esac ;;
617 mips-*-lnews*-ecoff) ;;
618 mips-*-*-ecoff) case "$endian" in
619 big) emulation="mipsbecoff mipslecoff mipsecoff" ;;
620 *) emulation="mipslecoff mipsbecoff mipsecoff" ;;
621 esac ;;
622 mips-*-*-elf) case "$endian" in
623 big) emulation="mipsbelf mipslelf mipself" ;;
624 *) emulation="mipslelf mipsbelf mipself" ;;
252b5132 625 esac ;;
906fac54 626 mips-*-sysv4*MP*-*) emulation="mipsbelf mipslelf mipself mipsbecoff mipslecoff mipsecoff" ;;
119caedd
L
627 # i386-pc-pe-coff != i386-pc-coff.
628 i386-*-pe-coff) ;;
4c63da97
AM
629 # Uncommenting the next line will turn on support for i386 AOUT
630 # for the default linux configuration
631 # i386-*-linux*-elf) emulation="i386elf i386aout" ;;
632 #
633 i386-*-aout) emulation="i386aout" ;;
4ca72d38 634 i386-*-coff) emulation="i386coff" ;;
4c63da97 635 i386-*-elf) emulation="i386elf" ;;
3bcbcc3d 636
f9c19112
HPN
637 # Always all formats. The first stated emulation becomes the default.
638 cris-*-*aout*) emulation="crisaout criself" ;;
639 cris-*-*) emulation="criself crisaout" ;;
252b5132
RH
640 esac
641
642 emulations="$emulations $emulation"
643
644done
645
15886821
L
646# Turn on all targets if possible
647if test ${all_targets} = "yes"; then
648 case ${target_cpu_type} in
649 i386)
650 case ${obj_format} in
651 aout)
652 emulations="$emulations i386coff i386elf"
653 ;;
654 coff)
655 emulations="$emulations i386aout i386elf"
656 ;;
657 elf)
658 emulations="$emulations i386aout i386coff"
659 ;;
660 esac
661 ;;
662 esac
663fi
664
252b5132
RH
665# Assign floating point type. Most processors with FP support
666# IEEE FP. On those that don't support FP at all, usually IEEE
667# is emulated.
668case ${target_cpu} in
669 vax | tahoe ) atof=${target_cpu} ;;
e135f41b 670 pdp11) atof=vax ;;
252b5132
RH
671 *) atof=ieee ;;
672esac
673
674case "${obj_format}" in
675 "") AC_MSG_ERROR(GAS does not know what format to use for target ${target}) ;;
676esac
677
678# Unfortunately the cpu in cpu-opc.h file isn't always $(TARGET_CPU).
679cgen_cpu_prefix=""
680if test $using_cgen = yes ; then
681 case ${target_cpu} in
682 *) cgen_cpu_prefix=${target_cpu} ;;
683 esac
684 AC_SUBST(cgen_cpu_prefix)
685 AC_DEFINE(USING_CGEN, 1, [Using cgen code?])
686fi
687
688dnl
689dnl Make sure the desired support files exist.
690dnl
691
692if test ! -r ${srcdir}/config/tc-${target_cpu_type}.c; then
693 AC_MSG_ERROR(GAS does not support target CPU ${target_cpu_type})
694fi
695
696if test ! -r ${srcdir}/config/obj-${obj_format}.c; then
697 AC_MSG_ERROR(GAS does not have support for object file format ${obj_format})
698fi
699
700case ${user_bfd_gas}-${primary_bfd_gas} in
701 yes-yes | no-no)
702 # We didn't override user's choice.
703 ;;
704 no-yes)
705 AC_MSG_WARN(Use of BFD is required for ${target}; overriding config options.)
706 ;;
707 no-preferred)
708 primary_bfd_gas=no
709 ;;
710 *-preferred)
711 primary_bfd_gas=yes
712 ;;
713 yes-*)
714 primary_bfd_gas=yes
715 ;;
716 -*)
717 # User specified nothing.
718 ;;
719esac
720
721# Some COFF configurations want these random other flags set.
722case ${obj_format} in
723 coff)
724 case ${target_cpu_type} in
725 i386) AC_DEFINE(I386COFF, 1, [Using i386 COFF?]) ;;
726 m68k) AC_DEFINE(M68KCOFF, 1, [Using m68k COFF?]) ;;
727 m88k) AC_DEFINE(M88KCOFF, 1, [Using m88k COFF?]) ;;
728 esac
729 ;;
730esac
731
732# Getting this done right is going to be a bitch. Each configuration specified
733# with --enable-targets=... should be checked for environment, format, cpu, and
734# bfd_gas setting.
735#
736# For each configuration, the necessary object file support code must be linked
737# in. This might be only one, it might be up to four. The necessary emulation
738# code needs to be provided, too.
739#
740# And then there's "--enable-targets=all"....
741#
742# For now, just always do it for MIPS ELF or ECOFF configurations. Sigh.
743
744formats="${obj_format}"
745emfiles=""
746EMULATIONS=""
747GAS_UNIQ(emulations)
748for em in . $emulations ; do
749 case $em in
750 .) continue ;;
97238fbd 751 mipsbelf | mipslelf | mipself)
252b5132 752 fmt=elf file=mipself ;;
97238fbd 753 mipsbecoff | mipslecoff | mipsecoff)
252b5132 754 fmt=ecoff file=mipsecoff ;;
0aa5d426
HPN
755 *coff)
756 fmt=coff file=$em ;;
757 *aout)
758 fmt=aout file=$em ;;
759 *elf)
760 fmt=elf file=$em ;;
252b5132
RH
761 esac
762 formats="$formats $fmt"
763 emfiles="$emfiles e-$file.o"
764 EMULATIONS="$EMULATIONS &$em,"
765done
766GAS_UNIQ(formats)
767GAS_UNIQ(emfiles)
768if test `set . $formats ; shift ; echo $#` -gt 1 ; then
769 for fmt in $formats ; do
770 case $fmt in
771 aout) AC_DEFINE(OBJ_MAYBE_AOUT, 1, [a.out support?]) ;;
772 bout) AC_DEFINE(OBJ_MAYBE_BOUT, 1, [b.out support?]) ;;
773 coff) AC_DEFINE(OBJ_MAYBE_COFF, 1, [COFF support?]) ;;
774 ecoff) AC_DEFINE(OBJ_MAYBE_ECOFF, 1, [ECOFF support?]) ;;
775 elf) AC_DEFINE(OBJ_MAYBE_ELF, 1, [ELF support?]) ;;
776 generic) AC_DEFINE(OBJ_MAYBE_GENERIC, 1, [generic support?]) ;;
777 hp300) AC_DEFINE(OBJ_MAYBE_HP300, 1, [HP300 support?]) ;;
778 ieee) AC_DEFINE(OBJ_MAYBE_IEEE, 1, [IEEE support?]) ;;
779 som) AC_DEFINE(OBJ_MAYBE_SOM, 1, [SOM support?]) ;;
780 vms) AC_DEFINE(OBJ_MAYBE_VMS, 1, [VMS support?]) ;;
781 esac
782 extra_objects="$extra_objects obj-$fmt.o"
783 done
784 obj_format=multi
785fi
786if test `set . $emfiles ; shift ; echo $#` -gt 0 ; then
252b5132 787 DEFAULT_EMULATION=`set . $emulations ; echo $2`
4ca72d38
AM
788 # e-mips* has more than one emulation per file, e-i386* has just one at the
789 # moment. If only one emulation is specified, then don't define
790 # USE_EMULATIONS or include any of the e-files as they will only be bloat.
791 case "${obj_format}${emfiles}" in
792 multi* | *mips*)
4ca72d38
AM
793 extra_objects="$extra_objects $emfiles"
794 AC_DEFINE(USE_EMULATIONS, 1, [Use emulation support?]) ;;
795 esac
252b5132
RH
796fi
797AC_SUBST(extra_objects)
798AC_DEFINE_UNQUOTED(EMULATIONS, $EMULATIONS, [Supported emulations.])
799AC_DEFINE_UNQUOTED(DEFAULT_EMULATION, "$DEFAULT_EMULATION",
800 [Default emulation.])
801
802case ${primary_bfd_gas}-${target_cpu_type}-${obj_format} in
803 yes-*-coff) need_bfd=yes ;;
804 no-*-coff) need_bfd=yes
805 AC_DEFINE(MANY_SEGMENTS, 1, [old COFF support?]) ;;
806esac
807
808reject_dev_configs=yes
809
810case ${reject_dev_configs}-${dev} in
811 yes-yes) # Oops.
812 AC_MSG_ERROR(GAS does not support the ${generic_target} configuration.)
813 ;;
814esac
815
816AC_SUBST(target_cpu_type)
817AC_SUBST(obj_format)
818AC_SUBST(te_file)
819AC_SUBST(install_tooldir)
820AC_SUBST(atof)
821dnl AC_SUBST(emulation)
822
823case "${primary_bfd_gas}" in
824 yes) AC_DEFINE(BFD_ASSEMBLER, 1, [Use BFD interface?])
825 need_bfd=yes ;;
826esac
827
828# do we need the opcodes library?
829case "${need_opcodes}" in
830yes)
831 OPCODES_LIB=../opcodes/libopcodes.la
832 ;;
833esac
834
835case "${need_bfd}" in
836yes)
837 BFDLIB=../bfd/libbfd.la
838 ALL_OBJ_DEPS="$ALL_OBJ_DEPS ../bfd/bfd.h"
839 ;;
840esac
841
842AC_SUBST(BFDLIB)
843AC_SUBST(OPCODES_LIB)
844
845AC_SUBST(ALL_OBJ_DEPS)
846
847AC_DEFINE_UNQUOTED(TARGET_ALIAS, "${target_alias}", [Target alias.])
848AC_DEFINE_UNQUOTED(TARGET_CANONICAL, "${target}", [Canonical target.])
849AC_DEFINE_UNQUOTED(TARGET_CPU, "${target_cpu}", [Target CPU.])
850AC_DEFINE_UNQUOTED(TARGET_VENDOR, "${target_vendor}", [Target vendor.])
851AC_DEFINE_UNQUOTED(TARGET_OS, "${target_os}", [Target OS.])
852
853AC_PROG_CC
854
855AC_PROG_YACC
856AM_PROG_LEX
857
858ALL_LINGUAS=
859CY_GNU_GETTEXT
860
861AM_MAINTAINER_MODE
862AC_EXEEXT
863
864AC_CHECK_HEADERS(string.h stdlib.h memory.h strings.h unistd.h stdarg.h varargs.h errno.h sys/types.h)
865
866# Put this here so that autoconf's "cross-compiling" message doesn't confuse
867# people who are not cross-compiling but are compiling cross-assemblers.
868AC_MSG_CHECKING(whether compiling a cross-assembler)
869if test "${host}" = "${target}"; then
870 cross_gas=no
871else
872 cross_gas=yes
873 AC_DEFINE(CROSS_COMPILE, 1, [Compiling cross-assembler?])
874fi
875AC_MSG_RESULT($cross_gas)
876
877dnl ansidecl.h will deal with const
878dnl AC_CONST
879AC_FUNC_ALLOCA
880AC_C_INLINE
881
882# VMS doesn't have unlink.
883AC_CHECK_FUNCS(unlink remove, break)
884
885# Some systems don't have sbrk().
886AC_CHECK_FUNCS(sbrk)
887
39bec121
TW
888# do we need the math library?
889case "${need_libm}" in
890yes)
891 AC_CHECK_LIBM
892 AC_SUBST(LIBM)
893 ;;
894esac
895
252b5132
RH
896# Some non-ANSI preprocessors botch requoting inside strings. That's bad
897# enough, but on some of those systems, the assert macro relies on requoting
898# working properly!
899GAS_WORKING_ASSERT
900
901# On some systems, the system header files may not declare malloc, realloc,
902# and free. There are places where gas needs these functions to have been
903# declared -- such as when taking their addresses.
904gas_test_headers="
905#ifdef HAVE_MEMORY_H
906#include <memory.h>
907#endif
908#ifdef HAVE_STRING_H
909#include <string.h>
910#else
911#ifdef HAVE_STRINGS_H
912#include <strings.h>
913#endif
914#endif
915#ifdef HAVE_STDLIB_H
916#include <stdlib.h>
917#endif
918#ifdef HAVE_UNISTD_H
919#include <unistd.h>
920#endif
921"
922GAS_CHECK_DECL_NEEDED(strstr, f, char *(*f)(), $gas_test_headers)
923GAS_CHECK_DECL_NEEDED(malloc, f, char *(*f)(), $gas_test_headers)
924GAS_CHECK_DECL_NEEDED(free, f, void (*f)(), $gas_test_headers)
925GAS_CHECK_DECL_NEEDED(sbrk, f, char *(*f)(), $gas_test_headers)
926GAS_CHECK_DECL_NEEDED(environ, f, char **f, $gas_test_headers)
927
928# Does errno.h declare errno, or do we have to add a separate declaration
929# for it?
930GAS_CHECK_DECL_NEEDED(errno, f, int f, [
931#ifdef HAVE_ERRNO_H
932#include <errno.h>
933#endif
934])
935
936dnl This must come last.
937
938dnl We used to make symlinks to files in the source directory, but now
939dnl we just use the right name for .c files, and create .h files in
940dnl the build directory which include the right .h file. Make sure
941dnl the old symlinks don't exist, so that a reconfigure in an existing
942dnl directory behaves reasonably.
943
76a27922 944AC_OUTPUT(Makefile doc/Makefile ${GDBINIT}:gdbinit.in po/Makefile.in:po/Make-in,
252b5132
RH
945[rm -f targ-cpu.c targ-cpu.h obj-format.h obj-format.c targ-env.h atof-targ.c itbl-cpu.h
946 echo '#include "tc-'"${target_cpu_type}"'.h"' > targ-cpu.h
947 echo '#include "obj-'"${obj_format}"'.h"' > obj-format.h
948 echo '#include "te-'"${te_file}"'.h"' > targ-env.h
949 echo '#include "itbl-'"${target_cpu_type}"'.h"' > itbl-cpu.h
950 if test "x$cgen_cpu_prefix" != x ; then
951 echo '#include "opcodes/'"${cgen_cpu_prefix}"'-desc.h"' > cgen-desc.h
952 fi
953
954 sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile],
955[target_cpu_type=${target_cpu_type}
956 cgen_cpu_prefix=${cgen_cpu_prefix}
957 obj_format=${obj_format}
958 te_file=${te_file}])
This page took 0.133934 seconds and 4 git commands to generate.