diff options
author | Jeff Law <law@redhat.com> | 1994-04-07 03:49:18 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1994-04-07 03:49:18 +0000 |
commit | f39a73b1b6b80123ddef25fc45bba1b00adf9b94 (patch) | |
tree | e02fece218b4f55f2dd8376d3e76c20ba827a2e4 /gas | |
parent | de3b08ac2e083df66d852deef55da73106dc1852 (diff) | |
download | gdb-f39a73b1b6b80123ddef25fc45bba1b00adf9b94.zip gdb-f39a73b1b6b80123ddef25fc45bba1b00adf9b94.tar.gz gdb-f39a73b1b6b80123ddef25fc45bba1b00adf9b94.tar.bz2 |
* configure.in (hppa*-*-*elf*): Don't require "-hp-" for the
manufacturer.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/configure.in | 21 |
2 files changed, 17 insertions, 9 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 0c46784..f8b3ba9 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +Wed Apr 6 20:48:30 1994 Jeffrey A. Law (law@snake.cs.utah.edu) + + * configure.in (hppa*-*-*elf*): Don't require "-hp-" for the + manufacturer. + Tue Apr 5 15:48:03 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) * config/tc-mips.c (mips_ip): For case 'o', when generating diff --git a/gas/configure.in b/gas/configure.in index 7ed350d..d4413c9 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -42,9 +42,9 @@ case "${host}" in alpha-*-osf*) gas_host=ansi ;; - hppa*-hp-hpux*) gas_host=hpux ;; - hppa*-hp-bsd*) gas_host=hppabsd ;; - hppa*-hp-osf*) gas_host=hppaosf ;; + hppa*-*-hpux*) gas_host=hpux ;; + hppa*-*-bsd*) gas_host=hppabsd ;; + hppa*-*-osf*) gas_host=hppaosf ;; hppa*-*-hiux*) gas_host=hpux ;; i[34]86-ibm-aix*) gas_host=i386aix ;; @@ -180,6 +180,7 @@ case ${generic_target} in m68k-wrs-vxworks | m68k-ericsson-ose | m68k-*-sunos*) obj_format=aout emulation=sun3 ;; + m68k-motorola-sysv) obj_format=coffbfd gas_target=m68kcoff emulation=delta ;; # The dpx2-specific support has apparently not been used in a while, or # it's not currently required. Either way, I've heard nothing about it, # and the configure.in code that would've selected te-dpx2.h wasn't being @@ -188,7 +189,6 @@ case ${generic_target} in # code. So if you really need te-dpx2.h, start with this for now, and try # to make it work: # m68k-bull-sysv3*) obj_format=coffbfd gas_target=m68kcoff emulation=dpx2 ;; - m68k-*-coff | m68k-*-sysv*) obj_format=coffbfd gas_target=m68kcoff ;; m68k-*-hpux) obj_format=hp300 emulation=hp300 ;; @@ -289,7 +289,7 @@ target_makefile_frag=config/${gas_target}.mt case ${bfd_gas}-${obj_format} in yes-coffbfd) obj_format=coff ;; - no-coffbfd) need_bfd=yes ;; + no-coffbfd) need_bfd=yes extra_def="MANY_SEGMENTS" ;; *-elf) bfd_gas=yes ;; *-ecoff) bfd_gas=yes ;; *-som) bfd_gas=yes ;; @@ -334,8 +334,7 @@ links="host.h targ-cpu.c targ-cpu.h targ-env.h obj-format.h obj-format.c atof-ta # post-target: case ${bfd_gas} in - yes) bfddef="BFDDEF=define" need_bfd=yes ;; - *) bfddef="BFDDEF=undef" ;; + yes) extra_def="BFD_ASSEMBLER" need_bfd=yes ;; esac case ${need_bfd} in @@ -349,9 +348,13 @@ case "x${host}" in esac rm -f Makefile.tem -echo $bfddef > Makefile.tem +echo $cross > Makefile.tem +case "$extra_def" in + "") ;; + *) echo defs=$extra_def >> Makefile.tem + ;; +esac echo $bfdlib >> Makefile.tem -echo $cross >> Makefile.tem echo "OPCODES_LIB=$opcodes" >> Makefile.tem cat Makefile >> Makefile.tem mv -f Makefile.tem Makefile |