| OLD | NEW |
| 1 # gas target specific configuration file. This is a -*- sh -*- file. | 1 # gas target specific configuration file. This is a -*- sh -*- file. |
| 2 | 2 |
| 3 # This is invoked by configure. Putting it in a separate shell file | 3 # This is invoked by configure. Putting it in a separate shell file |
| 4 # lets us skip running autoconf when modifying target specific | 4 # lets us skip running autoconf when modifying target specific |
| 5 # information. | 5 # information. |
| 6 | 6 |
| 7 # Input shell variables: | 7 # Input shell variables: |
| 8 # targ a configuration target name, such as i686-pc-linux-gnu. | 8 # targ a configuration target name, such as i686-pc-linux-gnu. |
| 9 | 9 |
| 10 # Output shell variables: | 10 # Output shell variables: |
| (...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 mips-*-ultrix*) fmt=ecoff endian=little ;; | 282 mips-*-ultrix*) fmt=ecoff endian=little ;; |
| 283 mips-*-osf*) fmt=ecoff endian=little ;; | 283 mips-*-osf*) fmt=ecoff endian=little ;; |
| 284 mips-*-ecoff*) fmt=ecoff ;; | 284 mips-*-ecoff*) fmt=ecoff ;; |
| 285 mips-*-pe*) fmt=coff endian=little em=pe ;; | 285 mips-*-pe*) fmt=coff endian=little em=pe ;; |
| 286 mips-*-irix6*) fmt=elf em=irix ;; | 286 mips-*-irix6*) fmt=elf em=irix ;; |
| 287 mips-*-irix5*) fmt=elf em=irix ;; | 287 mips-*-irix5*) fmt=elf em=irix ;; |
| 288 mips-*-irix*) fmt=ecoff em=irix ;; | 288 mips-*-irix*) fmt=ecoff em=irix ;; |
| 289 mips-*-lnews*) fmt=ecoff em=lnews ;; | 289 mips-*-lnews*) fmt=ecoff em=lnews ;; |
| 290 mips-*-riscos*) fmt=ecoff ;; | 290 mips-*-riscos*) fmt=ecoff ;; |
| 291 mips*-*-linux*) fmt=elf em=tmips ;; | 291 mips*-*-linux*) fmt=elf em=tmips ;; |
| 292 mips*-*-nacl) fmt=elf em=mipsnacl ;; |
| 292 mips*-*-freebsd* | mips*-*-kfreebsd*-gnu) | 293 mips*-*-freebsd* | mips*-*-kfreebsd*-gnu) |
| 293 fmt=elf em=freebsd ;; | 294 fmt=elf em=freebsd ;; |
| 294 mips-*-sysv4*MP* | mips-*-gnu*) fmt=elf em=tmips ;; | 295 mips-*-sysv4*MP* | mips-*-gnu*) fmt=elf em=tmips ;; |
| 295 mips*-sde-elf*) fmt=elf em=tmips ;; | 296 mips*-sde-elf*) fmt=elf em=tmips ;; |
| 296 mips-*-sysv*) fmt=ecoff ;; | 297 mips-*-sysv*) fmt=ecoff ;; |
| 297 mips-*-elf* | mips-*-rtems*) fmt=elf ;; | 298 mips-*-elf* | mips-*-rtems*) fmt=elf ;; |
| 298 mips-*-netbsd*) fmt=elf em=tmips ;; | 299 mips-*-netbsd*) fmt=elf em=tmips ;; |
| 299 mips-*-openbsd*) fmt=elf em=tmips ;; | 300 mips-*-openbsd*) fmt=elf em=tmips ;; |
| 300 | 301 |
| 301 mmix-*-*) fmt=elf ;; | 302 mmix-*-*) fmt=elf ;; |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 case ${fmt} in | 439 case ${fmt} in |
| 439 elf | ecoff | fdpicelf | multi | som) | 440 elf | ecoff | fdpicelf | multi | som) |
| 440 bfd_gas=yes | 441 bfd_gas=yes |
| 441 ;; | 442 ;; |
| 442 esac | 443 esac |
| 443 | 444 |
| 444 if test $bfd_gas != yes; then | 445 if test $bfd_gas != yes; then |
| 445 echo This target is no longer supported in gas | 446 echo This target is no longer supported in gas |
| 446 exit 1 | 447 exit 1 |
| 447 fi | 448 fi |
| OLD | NEW |