diff options
author | Zack Weinberg <zack@codesourcery.com> | 2004-03-09 23:55:45 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2004-03-09 23:55:45 +0000 |
commit | e373cdb46cbf785d4993ce5904f931df170690d4 (patch) | |
tree | 777ae2360ef686be0ad5fdb1eb18a4502718e936 /gcc | |
parent | 77dbdb5745d52b1ff3ddede885706d77a3817dd7 (diff) | |
download | gcc-e373cdb46cbf785d4993ce5904f931df170690d4.zip gcc-e373cdb46cbf785d4993ce5904f931df170690d4.tar.gz gcc-e373cdb46cbf785d4993ce5904f931df170690d4.tar.bz2 |
hpux.h (MULTILIB_DEFAULTS): Define.
* config/ia64/hpux.h (MULTILIB_DEFAULTS): Define.
(LIBGCC_SPEC): Update to match.
From-SVN: r79207
Diffstat (limited to 'gcc')
-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 9a4f62c..3749ffd 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 c6a7d15..97cdd3f 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 |