1# gas target specific configuration file. This is a -*- sh -*- file. 2# 3# Copyright (C) 2012-2016 Free Software Foundation, Inc. 4# 5# This file is free software; you can redistribute it and/or modify 6# it under the terms of the GNU General Public License as published by 7# the Free Software Foundation; either version 3 of the License, or 8# (at your option) any later version. 9# 10# This program is distributed in the hope that it will be useful, 11# but WITHOUT ANY WARRANTY; without even the implied warranty of 12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13# GNU General Public License for more details. 14# 15# You should have received a copy of the GNU General Public License 16# along with this program; see the file COPYING3. If not see 17# <http://www.gnu.org/licenses/>. 18# 19 20# This is invoked by configure. Putting it in a separate shell file 21# lets us skip running autoconf when modifying target specific 22# information. 23 24# Input shell variables: 25# targ a configuration target name, such as i686-pc-linux-gnu. 26 27# Output shell variables: 28# cpu_type canonical gas cpu type; identifies the config/tc-* files 29# fmt output format; identifies the config/obj-* files 30# em emulation; identifies the config/te-* files 31 32# Optional output shell variables; these are not always set: 33# arch the default architecture; sets DEFAULT_ARCH on some systems 34# endian "big" or "little"; used on bi-endian systems 35 36cpu_type= 37fmt= 38em=generic 39bfd_gas=no 40arch= 41endian= 42 43eval `echo $targ | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/cpu=\1 vendor=\2 os=\3/'` 44 45# Check for architecture variants. Set cpu_type and, optionally, 46# endian and arch. 47# Note: This table is alpha-sorted, please try to keep it that way. 48case ${cpu} in 49 aarch64) cpu_type=aarch64 endian=little ;; 50 aarch64_be) cpu_type=aarch64 endian=big ;; 51 alpha*) cpu_type=alpha ;; 52 am33_2.0) cpu_type=mn10300 endian=little ;; 53 arc*eb) cpu_type=arc endian=big ;; 54 arm*be|arm*b) cpu_type=arm endian=big ;; 55 arm*) cpu_type=arm endian=little ;; 56 bfin*) cpu_type=bfin endian=little ;; 57 c4x*) cpu_type=tic4x ;; 58 cr16*) cpu_type=cr16 endian=little ;; 59 crisv32) cpu_type=cris arch=crisv32 ;; 60 crx*) cpu_type=crx endian=little ;; 61 epiphany*) cpu_type=epiphany endian=little ;; 62 fido) cpu_type=m68k ;; 63 hppa*) cpu_type=hppa ;; 64 i[3-7]86) cpu_type=i386 arch=i386;; 65 ia64) cpu_type=ia64 ;; 66 ip2k) cpu_type=ip2k endian=big ;; 67 iq2000) cpu_type=iq2000 endian=big ;; 68 lm32) cpu_type=lm32 ;; 69 m32c) cpu_type=m32c endian=little ;; 70 m32r) cpu_type=m32r endian=big ;; 71 m32rle) cpu_type=m32r endian=little ;; 72 m5200|m5407) cpu_type=m68k ;; 73 m68008) cpu_type=m68k ;; 74 m680[012346]0) cpu_type=m68k ;; 75 m6811|m6812|m68hc12) cpu_type=m68hc11 ;; 76 m683??) cpu_type=m68k ;; 77 mep) cpu_type=mep endian=little ;; 78 microblazeel*) cpu_type=microblaze endian=little;; 79 microblaze*) cpu_type=microblaze endian=big;; 80 mips*el) cpu_type=mips endian=little ;; 81 mips*) cpu_type=mips endian=big ;; 82 mt) cpu_type=mt endian=big ;; 83 nds32be) cpu_type=nds32 endian=big ;; 84 nds32le) cpu_type=nds32 endian=little ;; 85 or1k* | or1knd*) cpu_type=or1k endian=big ;; 86 pjl*) cpu_type=pj endian=little ;; 87 pj*) cpu_type=pj endian=big ;; 88 powerpc*le*) cpu_type=ppc endian=little ;; 89 powerpc*) cpu_type=ppc endian=big ;; 90 riscv*eb) cpu_type=riscv endian=big ;; 91 riscv*) cpu_type=riscv endian=little ;; 92 rs6000*) cpu_type=ppc ;; 93 rl78*) cpu_type=rl78 ;; 94 rx) cpu_type=rx ;; 95 s390x*) cpu_type=s390 arch=s390x ;; 96 s390*) cpu_type=s390 arch=s390 ;; 97 score*l) cpu_type=score endian=little ;; 98 score*) cpu_type=score endian=big ;; 99 sh5le*) cpu_type=sh64 endian=little ;; 100 sh5*) cpu_type=sh64 endian=big ;; 101 sh64le*) cpu_type=sh64 endian=little ;; 102 sh64*) cpu_type=sh64 endian=big ;; 103 sh*le) cpu_type=sh endian=little ;; 104 sh*) cpu_type=sh endian=big ;; 105 sparc64*) cpu_type=sparc arch=v9-64 ;; 106 sparc86x*) cpu_type=sparc arch=sparc86x ;; 107 sparclet*) cpu_type=sparc arch=sparclet ;; 108 sparclite*) cpu_type=sparc arch=sparclite ;; 109 sparc*) cpu_type=sparc arch=sparclite ;; # ??? See tc-sparc.c. 110 tilegx*be) cpu_type=tilegx endian=big ;; 111 tilegx*) cpu_type=tilegx endian=little ;; 112 v850*) cpu_type=v850 ;; 113 visium) cpu_type=visium endian=big ;; 114 x86_64*) cpu_type=i386 arch=x86_64;; 115 xgate) cpu_type=xgate ;; 116 xtensa*) cpu_type=xtensa arch=xtensa ;; 117 *) cpu_type=${cpu} ;; 118esac 119 120 121# Assign object format. Set fmt, em, and bfd_gas. 122generic_target=${cpu_type}-$vendor-$os 123# Note: This table is alpha-sorted, please try to keep it that way. 124case ${generic_target} in 125 aarch64*-*-elf | aarch64*-*-rtems*) fmt=elf;; 126 aarch64*-*-linux*) fmt=elf em=linux ;; 127 aarch64*-*-netbsd*) fmt=elf em=nbsd ;; 128 129 alpha-*-*vms*) fmt=evax ;; 130 alpha-*-osf*) fmt=ecoff ;; 131 alpha-*-linux*ecoff*) fmt=ecoff ;; 132 alpha-*-linux-*) fmt=elf em=linux ;; 133 alpha-*-netbsd* | alpha-*-openbsd*) fmt=elf em=nbsd ;; 134 135 arc-*-elf*) fmt=elf ;; 136 arc*-*-linux*) fmt=elf bfd_gas=yes ;; 137 138 arm-*-aout) fmt=aout ;; 139 arm-*-coff) fmt=coff ;; 140 arm-*-phoenix*) fmt=elf ;; 141 arm-*-rtems*) fmt=elf ;; 142 arm-*-elf) fmt=elf ;; 143 arm-*-netbsdelf*-*eabihf*) fmt=elf em=armnbsdeabihf ;; 144 arm-*-netbsdelf*-*eabi*) fmt=elf em=armnbsdeabi ;; 145 arm-*-eabi*) fmt=elf em=armeabi ;; 146 arm-*-symbianelf*) fmt=elf em=symbian ;; 147 arm-*-kaos*) fmt=elf ;; 148 arm-*-conix*) fmt=elf ;; 149 arm-*-freebsd[89].* | armeb-*-freebsd[89].*) 150 fmt=elf em=freebsd ;; 151 arm-*-freebsd* | armeb-*-freebsd*) fmt=elf em=armfbsdeabi ;; 152 arm*-*-freebsd*) fmt=elf em=armfbsdvfp ;; 153 arm-*-linux*aout*) fmt=aout em=linux ;; 154 arm-*-linux-*eabi*) fmt=elf em=armlinuxeabi ;; 155 arm-*-linux-*) fmt=elf em=linux ;; 156 arm-*-uclinux*eabi*) fmt=elf em=armlinuxeabi ;; 157 arm-*-uclinux*) fmt=elf em=linux ;; 158 arm-*-nacl*) fmt=elf em=nacl ;; 159 arm-*-netbsdelf*) fmt=elf em=armnbsd ;; 160 arm-*-*n*bsd*) fmt=aout em=armnbsd ;; 161 arm-*-nto*) fmt=elf ;; 162 arm-epoc-pe) fmt=coff em=epoc-pe ;; 163 arm-wince-pe | arm-*-wince | arm*-*-mingw32ce* | arm*-*-cegcc*) 164 fmt=coff em=wince-pe ;; 165 arm-*-pe) fmt=coff em=pe ;; 166 arm-*-riscix*) fmt=aout em=riscix ;; 167 168 avr-*-*) fmt=elf bfd_gas=yes ;; 169 170 bfin-*-linux-uclibc) fmt=fdpicelf em=linux ;; 171 bfin-*-uclinux*) fmt=elf em=linux ;; 172 bfin-*-rtems*) fmt=elf ;; 173 bfin-*elf) fmt=elf ;; 174 175 cr16-*-elf*) fmt=elf ;; 176 177 cris-*-linux-* | crisv32-*-linux-*) 178 fmt=multi em=linux ;; 179 cris-*-* | crisv32-*-*) fmt=multi ;; 180 181 crx-*-elf*) fmt=elf ;; 182 183 d10v-*-*) fmt=elf ;; 184 d30v-*-*) fmt=elf ;; 185 dlx-*-*) fmt=elf ;; 186 187 epiphany-*-*) fmt=elf ;; 188 189 fr30-*-*) fmt=elf ;; 190 frv-*-*linux*) fmt=elf em=linux;; 191 frv-*-*) fmt=elf ;; 192 193 ft32-*-*) fmt=elf ;; 194 195 hppa-*-linux*) 196 case ${cpu} in 197 hppa*64*) fmt=elf em=hppalinux64 ;; 198 hppa*) fmt=elf em=linux ;; 199 esac ;; 200 hppa-*-*elf*) fmt=elf em=hppa ;; 201 hppa-*-lites*) fmt=elf em=hppa ;; 202 hppa-*-netbsd*) fmt=elf em=nbsd ;; 203 hppa-*-openbsd*) fmt=elf em=hppa ;; 204 hppa-*-osf*) fmt=som em=hppa ;; 205 hppa-*-hpux11*) 206 case ${cpu} in 207 hppa*64*) fmt=elf em=hppa64 ;; 208 hppa*) fmt=som em=hppa ;; 209 esac ;; 210 hppa-*-hpux*) fmt=som em=hppa ;; 211 hppa-*-mpeix*) fmt=som em=hppa ;; 212 hppa-*-bsd*) fmt=som em=hppa ;; 213 hppa-*-hiux*) fmt=som em=hppa ;; 214 215 h8300-*-elf | h8300-*-rtems*) fmt=elf ;; 216 h8300-*-linux*) fmt=elf em=linux ;; 217 218 i370-*-elf* | i370-*-linux*) fmt=elf ;; 219 220 i386-ibm-aix*) fmt=coff em=i386aix ;; 221 i386-sequent-bsd*) fmt=aout em=dynix ;; 222 i386-*-beospe*) fmt=coff em=pe ;; 223 i386-*-beos*) fmt=elf ;; 224 i386-*-coff) fmt=coff ;; 225 i386-*-elfiamcu) fmt=elf arch=iamcu ;; 226 i386-*-elf*) fmt=elf ;; 227 i386-*-kaos*) fmt=elf ;; 228 i386-*-bsd*) fmt=aout em=386bsd ;; 229 i386-*-nacl*) fmt=elf em=nacl 230 case ${cpu} in 231 x86_64*) arch=x86_64:32 ;; 232 esac ;; 233 i386-*-netbsd0.8) fmt=aout em=386bsd ;; 234 i386-*-netbsdpe*) fmt=coff em=pe ;; 235 i386-*-netbsd*-gnu* | \ 236 i386-*-knetbsd*-gnu | \ 237 i386-*-netbsdelf*) fmt=elf em=nbsd ;; 238 i386-*-netbsd*) 239 case ${cpu} in 240 x86_64) fmt=elf em=nbsd ;; 241 *) fmt=aout em=nbsd ;; 242 esac ;; 243 i386-*-openbsd[0-2].* | \ 244 i386-*-openbsd3.[0-2]) fmt=aout em=nbsd ;; 245 i386-*-openbsd*) fmt=elf em=nbsd ;; 246 i386-*-linux*aout*) fmt=aout em=linux ;; 247 i386-*-linux*oldld) fmt=aout em=linux ;; 248 i386-*-linux*coff*) fmt=coff em=linux ;; 249 i386-*-linux-*) fmt=elf em=linux 250 case ${cpu}-${os} in 251 x86_64*-linux-gnux32) arch=x86_64:32 ;; 252 esac ;; 253 i386-*-lynxos*) fmt=elf em=lynx ;; 254 i386-*-sysv[45]*) fmt=elf ;; 255 i386-*-solaris*) fmt=elf em=solaris ;; 256 i386-*-freebsdaout*) fmt=aout em=386bsd ;; 257 i386-*-freebsd[12].*) fmt=aout em=386bsd ;; 258 i386-*-freebsd[12]) fmt=aout em=386bsd ;; 259 i386-*-freebsd* \ 260 | i386-*-kfreebsd*-gnu) fmt=elf em=freebsd ;; 261 i386-*-sysv*) fmt=coff ;; 262 i386-*-sco3.2v5*coff) fmt=coff ;; 263 i386-*-isc*) fmt=coff ;; 264 i386-*-sco3.2v5*) fmt=elf ;; 265 i386-*-sco3.2*) fmt=coff ;; 266 i386-*-vsta) fmt=aout ;; 267 i386-*-msdosdjgpp* \ 268 | i386-*-go32*) fmt=coff em=go32 ;; 269 i386-*-rtems*) fmt=elf ;; 270 i386-*-gnu*) fmt=elf em=gnu ;; 271 i386-*-mach*) fmt=aout em=mach ;; 272 i386-*-msdos*) fmt=aout ;; 273 i386-*-moss*) fmt=elf ;; 274 i386-*-pe) fmt=coff em=pe ;; 275 i386-*-cygwin*) 276 case ${cpu} in 277 x86_64*) fmt=coff em=pep ;; 278 i*) fmt=coff em=pe ;; 279 esac ;; 280 i386-*-interix*) fmt=coff em=interix ;; 281 i386-*-mingw*) 282 case ${cpu} in 283 x86_64*) fmt=coff em=pep ;; 284 i*) fmt=coff em=pe ;; 285 esac ;; 286 i386-*-nto-qnx*) fmt=elf ;; 287 i386-*-*nt*) fmt=coff em=pe ;; 288 i386-*-chaos) fmt=elf ;; 289 i386-*-rdos*) fmt=elf ;; 290 i386-*-darwin*) fmt=macho ;; 291 292 i860-*-*) fmt=elf endian=little ;; 293 294 i960-*-elf*) fmt=elf ;; 295 296 ia64-*-elf*) fmt=elf ;; 297 ia64-*-*vms*) fmt=elf em=vms ;; 298 ia64-*-aix*) fmt=elf em=ia64aix ;; 299 ia64-*-linux-*) fmt=elf em=linux ;; 300 ia64-*-hpux*) fmt=elf em=hpux ;; 301 ia64-*-netbsd*) fmt=elf em=nbsd ;; 302 303 ip2k-*-*) fmt=elf ;; 304 305 iq2000-*-elf) fmt=elf ;; 306 307 lm32-*-*) fmt=elf ;; 308 309 m32c-*-elf | m32c-*-rtems*) fmt=elf ;; 310 311 m32r-*-elf* | m32r-*-rtems*) fmt=elf ;; 312 m32r-*-linux*) fmt=elf em=linux;; 313 314 m68hc11-*-* | m6811-*-*) fmt=elf ;; 315 m68hc12-*-* | m6812-*-*) fmt=elf ;; 316 317 m68k-*-aout) fmt=aout bfd_gas=yes ;; 318 m68k-*-elf*) fmt=elf ;; 319 m68k-*-sysv4*) fmt=elf em=svr4 ;; 320 m68k-*-rtems*) fmt=elf ;; 321 m68k-*-linux-*) fmt=elf em=linux ;; 322 m68k-*-uclinux*) fmt=elf em=uclinux ;; 323 m68k-*-gnu*) fmt=elf ;; 324 m68k-*-netbsdelf*) fmt=elf em=nbsd ;; 325 m68k-*-netbsd*) fmt=aout em=nbsd bfd_gas=yes ;; 326 m68k-*-openbsd*) fmt=aout em=nbsd bfd_gas=yes ;; 327 m68k-*-psos*) fmt=elf em=psos;; 328 329 mep-*-elf) fmt=elf ;; 330 331 metag-*-elf) fmt=elf ;; 332 metag-*-linux*) fmt=elf em=linux ;; 333 334 mcore-*-elf) fmt=elf ;; 335 mcore-*-pe) fmt=coff em=pe bfd_gas=yes ;; 336 337 microblaze-*-*) fmt=elf ;; 338 339 mips-*-irix6*) fmt=elf em=irix ;; 340 mips-*-irix5*) fmt=elf em=irix ;; 341 mips*-*-linux*) fmt=elf em=tmips ;; 342 mips*-*-freebsd* | mips*-*-kfreebsd*-gnu) 343 fmt=elf em=freebsd ;; 344 mips-*-sysv4*MP* | mips-*-gnu*) fmt=elf em=tmips ;; 345 mips*-sde-elf* | mips*-mti-elf* | mips*-img-elf*) 346 fmt=elf em=tmips ;; 347 mips-*-elf* | mips-*-rtems*) fmt=elf ;; 348 mips-*-netbsd*) fmt=elf em=tmips ;; 349 mips-*-openbsd*) fmt=elf em=tmips ;; 350 351 mmix-*-*) fmt=elf ;; 352 353 mn10200-*-*) fmt=elf ;; 354 355 # cpu_type for am33_2.0 is set to mn10300 356 mn10300-*-linux*) fmt=elf em=linux ;; 357 mn10300-*-*) fmt=elf ;; 358 359 moxie-*-uclinux) fmt=elf em=linux ;; 360 moxie-*-moxiebox*) fmt=elf endian=little ;; 361 moxie-*-*) fmt=elf ;; 362 363 mt-*-elf) fmt=elf bfd_gas=yes ;; 364 365 msp430-*-*) fmt=elf ;; 366 367 nds32-*-elf*) fmt=elf ;; 368 nds32-*-linux*) fmt=elf em=linux ;; 369 370 nios2-*-rtems*) fmt=elf ;; 371 nios2*-linux*) fmt=elf em=linux ;; 372 373 ns32k-pc532-mach*) fmt=aout em=pc532mach ;; 374 ns32k-pc532-ux*) fmt=aout em=pc532mach ;; 375 ns32k-pc532-lites*) fmt=aout em=nbsd532 ;; 376 ns32k-*-*n*bsd*) fmt=aout em=nbsd532 ;; 377 378 or1k*-*-elf | or1k*-*-rtems*) fmt=elf endian=big ;; 379 or1k*-*-linux*) fmt=elf em=linux endian=big ;; 380 or1k-*-netbsd*) fmt=elf em=nbsd ;; 381 382 pj*) fmt=elf ;; 383 384 ppc-*-pe | ppc-*-cygwin*) fmt=coff em=pe ;; 385 ppc-*-winnt*) fmt=coff em=pe ;; 386 ppc-*-aix5.[01]) fmt=coff em=aix5 ;; 387 ppc-*-aix[5-9].*) fmt=coff em=aix5 ;; 388 ppc-*-aix*) fmt=coff em=aix ;; 389 ppc-*-beos*) fmt=coff ;; 390 ppc-*-*n*bsd* | ppc-*-elf*) fmt=elf ;; 391 ppc-*-eabi* | ppc-*-sysv4*) fmt=elf ;; 392 ppc-*-linux-*) fmt=elf em=linux ;; 393 ppc-*-solaris*) fmt=elf em=solaris ;; 394 ppc-*-rtems*) fmt=elf ;; 395 ppc-*-macos*) fmt=coff em=macos ;; 396 ppc-*-nto*) fmt=elf ;; 397 ppc-*-kaos*) fmt=elf ;; 398 ppc-*-lynxos*) fmt=elf em=lynx ;; 399 400 riscv*eb-*-linux*) fmt=elf endian=big em=linux ;; 401 riscv*eb-*-netbsd*) fmt=elf endian=big em=nbsd ;; 402 riscv*-*-linux*) fmt=elf endian=little em=linux ;; 403 riscv*-*-netbsd*) fmt=elf endian=little em=nbsd ;; 404 405 s390-*-linux-*) fmt=elf em=linux ;; 406 s390-*-tpf*) fmt=elf ;; 407 408 score-*-elf) fmt=elf ;; 409 410 sh*-*-linux*) fmt=elf em=linux 411 case ${cpu} in 412 sh*eb) endian=big ;; 413 *) endian=little ;; 414 esac ;; 415 sh5*-*-netbsd*) fmt=elf em=nbsd ;; 416 sh64*-*-netbsd*) fmt=elf em=nbsd ;; 417 sh*-*-netbsdelf*) fmt=elf em=nbsd 418 case ${cpu} in 419 sh*l*) endian=little ;; 420 *) endian=big ;; 421 esac ;; 422 sh*-*-symbianelf*) fmt=elf endian=little ;; 423 sh-*-elf*) fmt=elf ;; 424 sh-*-uclinux* | sh[12]-*-uclinux*) fmt=elf em=uclinux ;; 425 sh-*-coff*) fmt=coff ;; 426 sh-*-nto*) fmt=elf ;; 427 sh-*-pe*) fmt=coff em=pe bfd_gas=yes endian=little ;; 428 sh-*-rtemscoff*) fmt=coff ;; 429 sh-*-rtems*) fmt=elf ;; 430 sh-*-kaos*) fmt=elf ;; 431 shle*-*-kaos*) fmt=elf ;; 432 sh64-*-elf*) fmt=elf ;; 433 434 sparc64-*-rtems*) fmt=elf ;; 435 sparc-*-rtems*) fmt=elf ;; 436 sparc-*-sunos4*) fmt=aout em=sun3 ;; 437 sparc-*-aout) fmt=aout em=sparcaout ;; 438 sparc-*-coff) fmt=coff ;; 439 sparc-*-linux*aout*) fmt=aout em=linux ;; 440 sparc-*-linux-*) fmt=elf em=linux ;; 441 sparc-fujitsu-none) fmt=aout ;; 442 sparc-*-elf) fmt=elf ;; 443 sparc-*-sysv4*) fmt=elf ;; 444 sparc-*-solaris*) fmt=elf em=solaris ;; 445 sparc-*-netbsdelf*) fmt=elf em=nbsd ;; 446 sparc-*-netbsd*) 447 case ${cpu} in 448 sparc64) fmt=elf em=nbsd ;; 449 *) fmt=aout em=nbsd ;; 450 esac ;; 451 sparc-*-openbsd[0-2].* | \ 452 sparc-*-openbsd3.[0-1]) 453 case ${cpu} in 454 sparc64) fmt=elf em=nbsd ;; 455 *) fmt=aout em=nbsd ;; 456 esac ;; 457 sparc-*-openbsd*) fmt=elf em=nbsd ;; 458 459 spu-*-elf) fmt=elf ;; 460 461 tic30-*-*aout*) fmt=aout bfd_gas=yes ;; 462 tic30-*-*coff*) fmt=coff bfd_gas=yes ;; 463 tic4x-*-* | c4x-*-*) fmt=coff bfd_gas=yes ;; 464 tic54x-*-* | c54x*-*-*) fmt=coff bfd_gas=yes need_libm=yes;; 465 tic6x-*-*) fmt=elf ;; 466 467 tilepro-*-* | tilegx*-*-*) fmt=elf ;; 468 469 v850*-*-*) fmt=elf ;; 470 471 vax-*-netbsdelf*) fmt=elf em=nbsd ;; 472 vax-*-linux-*) fmt=elf em=linux ;; 473 474 visium-*-elf) fmt=elf ;; 475 476 xstormy16-*-*) fmt=elf ;; 477 478 xgate-*-*) fmt=elf ;; 479 480 xtensa*-*-*) fmt=elf ;; 481 482 z80-*-coff) fmt=coff ;; 483 484 z8k-*-coff | z8k-*-sim) fmt=coff ;; 485 486 *-*-aout | *-*-scout) fmt=aout ;; 487 *-*-cloudabi*) fmt=elf ;; 488 *-*-dragonfly*) fmt=elf em=dragonfly ;; 489 *-*-freebsd* | *-*-kfreebsd*-gnu) fmt=elf em=freebsd ;; 490 *-*-bsd*) fmt=aout em=sun3 ;; 491 *-*-generic) fmt=generic ;; 492 *-*-xray | *-*-hms) fmt=coff ;; 493 *-*-sim) fmt=coff ;; 494 *-*-elf | *-*-sysv4*) fmt=elf ;; 495 *-*-solaris*) fmt=elf em=solaris ;; 496 *-*-aros*) fmt=elf em=linux ;; 497 *-*-vxworks* | *-*-windiss) fmt=elf em=vxworks ;; 498 *-*-netware) fmt=elf em=netware ;; 499esac 500 501case ${cpu_type} in 502 aarch64 | alpha | arm | i386 | ia64 | microblaze | mips | ns32k | or1k | or1knd | pdp11 | ppc | riscv | sparc | z80 | z8k) 503 bfd_gas=yes 504 ;; 505esac 506case ${fmt} in 507 elf | ecoff | fdpicelf | multi | som) 508 bfd_gas=yes 509 ;; 510esac 511 512if test $bfd_gas != yes; then 513 echo This target is no longer supported in gas 514 exit 1 515fi 516 517case ${cpu_type}-${fmt}-${os} in 518i386-elf-linux*) 519 # Default to compress DWARF debug sections for Linux/x86. 520 if test ${ac_default_compressed_debug_sections} = unset; then 521 ac_default_compressed_debug_sections=yes 522 fi 523 ;; 524esac 525