diff options
author | Jakub Jelinek <jakub@redhat.com> | 2001-04-25 23:06:10 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2001-04-25 23:06:10 +0200 |
commit | ad5042df72d0eaed0b7c76c0424b95c5fdbf71f3 (patch) | |
tree | 775a2ac26823e31dbadc32e0e8c6022d26e9151d | |
parent | 9e65a913b61c9366349eee365616f380abbc251e (diff) | |
download | gcc-ad5042df72d0eaed0b7c76c0424b95c5fdbf71f3.zip gcc-ad5042df72d0eaed0b7c76c0424b95c5fdbf71f3.tar.gz gcc-ad5042df72d0eaed0b7c76c0424b95c5fdbf71f3.tar.bz2 |
ia64.h (CC1_SPEC): Define.
* config/ia64/ia64.h (CC1_SPEC): Define.
* config/ia64/linux.h (CC1_SPEC): Define.
From-SVN: r41549
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/ia64/ia64.h | 3 | ||||
-rw-r--r-- | gcc/config/ia64/linux.h | 4 |
3 files changed, 11 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c6c57ef..e0cfdf2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-04-25 Jakub Jelinek <jakub@redhat.com> + + * config/ia64/ia64.h (CC1_SPEC): Define. + * config/ia64/linux.h (CC1_SPEC): Define. + Wed Apr 25 17:09:50 2001 J"orn Rennecke <amylaar@redhat.com> * emit-rtl.c (constant_subword): Also do sign extension in diff --git a/gcc/config/ia64/ia64.h b/gcc/config/ia64/ia64.h index d4f9eb4..396764b 100644 --- a/gcc/config/ia64/ia64.h +++ b/gcc/config/ia64/ia64.h @@ -227,7 +227,8 @@ extern const char *ia64_fixed_range_string; `cc1'. It can also specify how to translate options you give to GNU CC into options for GNU CC to pass to the `cc1'. */ -/* #define CC1_SPEC "" */ +#undef CC1_SPEC +#define CC1_SPEC "%{G*}" /* A C string constant that tells the GNU CC driver program options to pass to `cc1plus'. It can also specify how to translate options you give to GNU CC diff --git a/gcc/config/ia64/linux.h b/gcc/config/ia64/linux.h index 35934e9..2bb71eb 100644 --- a/gcc/config/ia64/linux.h +++ b/gcc/config/ia64/linux.h @@ -3,6 +3,10 @@ #include <linux.h> #include "sysv4.h" +/* This is for -profile to use -lc_p instead of -lc. */ +#undef CC1_SPEC +#define CC1_SPEC "%{profile:-p} %{G*}" + /* ??? Maybe this should be in sysv4.h? */ #define CPP_PREDEFINES "\ -D__ia64 -D__ia64__ -D__linux -D__linux__ -D_LONGLONG -Dlinux -Dunix \ |