diff options
author | danglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-30 03:11:28 +0000 |
---|---|---|
committer | danglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-30 03:11:28 +0000 |
commit | 00e1516699a7db3783151dd15f35e8a699475b41 (patch) | |
tree | 7e3f02313f962f526878e9aed5f21a242f594b41 /gcc/config.host | |
parent | 68b7b0fea0d6ce2e74c91bfb890870ea079886d2 (diff) | |
download | gcc-00e1516699a7db3783151dd15f35e8a699475b41.tar.gz |
PR pch/14940
* config/pa/pa-host.c, config/pa/x-hpux, config/pa/x-linux: New files.
* config.host (hppa*-*-hpux*, hppa*-*-linux): Define out_host_hook_obj
and host_xmake_file using new host configuration files.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91509 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config.host')
-rw-r--r-- | gcc/config.host | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/config.host b/gcc/config.host index fa7963062bf..9024ec1c5e8 100644 --- a/gcc/config.host +++ b/gcc/config.host @@ -113,7 +113,12 @@ case ${host} in hppa1.0-*-hpux10* | hppa1.1-*-hpux10* | hppa2*-*-hpux10* | \ hppa1.0-*-hpux11* | hppa1.1-*-hpux11* | hppa2*-*-hpux11* | \ hppa*64*-*-hpux11*) - host_xmake_file="pa/x-ada" + out_host_hook_obj=pa-host.o + host_xmake_file=pa/x-hpux + ;; + hppa*-*-linux*) + out_host_hook_obj=pa-host.o + host_xmake_file=pa/x-linux ;; i370-*-opened* | i370-*-mvs* ) # IBM 360/370/390 Architecture host_xm_defines='FATAL_EXIT_CODE=12' |