diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-09 23:55:45 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-09 23:55:45 +0000 |
commit | 063c271575fd95f73625b29429168e78f0b4f778 (patch) | |
tree | 777ae2360ef686be0ad5fdb1eb18a4502718e936 | |
parent | a89ce285eca443913e57be993bd4e8d221a8fca5 (diff) | |
download | gcc-063c271575fd95f73625b29429168e78f0b4f778.tar.gz |
* config/ia64/hpux.h (MULTILIB_DEFAULTS): Define.
(LIBGCC_SPEC): Update to match.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79207 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/ia64/hpux.h | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9a4f62c616e..3749ffd276d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2004-03-09 Zack Weinberg <zack@codesourcery.com> + * config/ia64/hpux.h (MULTILIB_DEFAULTS): Define. + (LIBGCC_SPEC): Update to match. + +2004-03-09 Zack Weinberg <zack@codesourcery.com> + * c-decl.c (last_function_parms, last_function_parm_tags) (last_function_parm_others, current_function_parms) (current_function_parm_tags, current_function_parm_others): diff --git a/gcc/config/ia64/hpux.h b/gcc/config/ia64/hpux.h index c6a7d152d2b..97cdd3fd5b2 100644 --- a/gcc/config/ia64/hpux.h +++ b/gcc/config/ia64/hpux.h @@ -86,7 +86,7 @@ do { \ #ifndef CROSS_COMPILE #undef LIBGCC_SPEC #define LIBGCC_SPEC \ - "%{shared-libgcc:%{!mlp64:-lgcc_s_hpux32}%{mlp64:-lgcc_s_hpux64} -lgcc} \ + "%{shared-libgcc:%{!mlp64:-lgcc_s}%{mlp64:-lgcc_s_hpux64} -lgcc} \ %{!shared-libgcc:-lgcc}" #endif @@ -95,6 +95,8 @@ do { \ { "ilp32", MASK_ILP32, "Generate ILP32 code" }, \ { "lp64", -MASK_ILP32, "Generate LP64 code" }, +#define MULTILIB_DEFAULTS { "milp32" } + /* A C expression whose value is zero if pointers that need to be extended from being `POINTER_SIZE' bits wide to `Pmode' are sign-extended and greater then zero if they are zero-extended and less then zero if the |