diff options
author | Steve Ellcey <sje@cup.hp.com> | 2005-10-07 17:16:31 +0000 |
---|---|---|
committer | Steve Ellcey <sje@gcc.gnu.org> | 2005-10-07 17:16:31 +0000 |
commit | 9bff16b865d92c65d324ad8a32d73e11d84db02b (patch) | |
tree | 74ecd8b92b0c64a5612e943828604f93f9aedd5c /gcc/config.host | |
parent | aed6ee2453b75a196293df1493cf25e8a2fd8e30 (diff) | |
download | gcc-9bff16b865d92c65d324ad8a32d73e11d84db02b.tar.gz |
config.host (hppa*-*-hpux*): Change out_host_hook_obj and host_xmake_file.
* config.host (hppa*-*-hpux*): Change out_host_hook_obj and
host_xmake_file.
(hppa*-*-linux*): Ditto.
(ia64-*-hpux*): Add out_host_hook_obj and host_xmake_file.
config/host-hpux.c: New.
config/x-hpux: New.
config/pa/x-hpux: Remove.
config/pa/x-linux: Remove.
config/pa/pa-host.c: Remove.
From-SVN: r105093
Diffstat (limited to 'gcc/config.host')
-rw-r--r-- | gcc/config.host | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gcc/config.host b/gcc/config.host index 0f804aa543c..026cd09a91d 100644 --- a/gcc/config.host +++ b/gcc/config.host @@ -122,12 +122,12 @@ case ${host} in hppa1.0-*-hpux10* | hppa1.1-*-hpux10* | hppa2*-*-hpux10* | \ hppa1.0-*-hpux11* | hppa1.1-*-hpux11* | hppa2*-*-hpux11* | \ hppa*64*-*-hpux11*) - out_host_hook_obj=pa-host.o - host_xmake_file=pa/x-hpux + out_host_hook_obj=host-hpux.o + host_xmake_file="pa/x-ada x-hpux" ;; hppa*-*-linux*) - out_host_hook_obj=pa-host.o - host_xmake_file=pa/x-linux + out_host_hook_obj=host-hpux.o + host_xmake_file=x-hpux ;; i370-*-opened* | i370-*-mvs* ) # IBM 360/370/390 Architecture host_xm_defines='FATAL_EXIT_CODE=12' @@ -194,5 +194,7 @@ case ${host} in ;; ia64-*-hpux*) use_long_long_for_widest_fast_int=yes + out_host_hook_obj=host-hpux.o + host_xmake_file=x-hpux ;; esac |