diff options
author | Steve Ellcey <sje@cup.hp.com> | 2006-05-09 20:00:55 +0000 |
---|---|---|
committer | Steve Ellcey <sje@gcc.gnu.org> | 2006-05-09 20:00:55 +0000 |
commit | 543b60091e1ea1bf8c7c976b951f4e208807c228 (patch) | |
tree | c3c2d21a4e7f97fc95a7faf6b90e82c2b5669563 /gcc | |
parent | 7ac159a508dcbac92324f5f2ea50906a8e10f8b8 (diff) | |
download | gcc-543b60091e1ea1bf8c7c976b951f4e208807c228.zip gcc-543b60091e1ea1bf8c7c976b951f4e208807c228.tar.gz gcc-543b60091e1ea1bf8c7c976b951f4e208807c228.tar.bz2 |
re PR bootstrap/26872 (Internal Compiler Error when bootstrap GCC 4.1.0 with GCC 4.0.2)
PR bootstrap/26872
* config.gcc (hppa[12]*-*-hpux10*): Set gas to yes.
(hppa*64*-*-hpux11*): Ditto.
(hppa[12]*-*-hpux11*): Ditto.
From-SVN: r113661
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/config.gcc | 16 |
2 files changed, 13 insertions, 10 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index dd7686f..f74f2d3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2006-05-09 Steve Ellcey <sje@cup.hp.com> + + PR bootstrap/26872 + * config.gcc (hppa[12]*-*-hpux10*): Set gas to yes. + (hppa*64*-*-hpux11*): Ditto. + (hppa[12]*-*-hpux11*): Ditto. + 2006-05-09 David Edelsohn <edelsohn@gnu.org> PR target/26545 diff --git a/gcc/config.gcc b/gcc/config.gcc index dbc6deb..7608d04 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -931,6 +931,7 @@ hppa[12]*-*-hpux10*) fi use_collect2=yes use_fixproto=yes + gas=yes ;; hppa*64*-*-hpux11*) target_cpu_default="MASK_PA_11|MASK_PA_20" @@ -938,16 +939,9 @@ hppa*64*-*-hpux11*) then target_cpu_default="${target_cpu_default}|MASK_GNU_LD" fi - if test x$gas = xyes - then - tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h \ - pa/pa64-regs.h pa/pa-hpux.h pa/pa-hpux1010.h \ - pa/pa-hpux11.h" - else - tm_file="pa/pa64-start.h ${tm_file} dbxelf.h pa/elf.h \ - pa/pa64-regs.h pa/pa-hpux.h pa/pa-hpux1010.h \ - pa/pa-hpux11.h" - fi + tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h \ + pa/pa64-regs.h pa/pa-hpux.h pa/pa-hpux1010.h \ + pa/pa-hpux11.h" case ${target} in *-*-hpux11.[1-9]*) tm_file="${tm_file} pa/pa-hpux1111.h pa/pa-64.h pa/pa64-hpux.h" @@ -974,6 +968,7 @@ hppa*64*-*-hpux11*) thread_file=posix ;; esac + gas=yes ;; hppa[12]*-*-hpux11*) case ${target} in @@ -1003,6 +998,7 @@ hppa[12]*-*-hpux11*) ;; esac use_collect2=yes + gas=yes ;; i[34567]86-*-darwin*) # All the configuration is presently done generically. |