diff options
author | Geoffrey Keating <geoffk@redhat.com> | 2001-02-10 11:37:58 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2001-02-10 11:37:58 +0000 |
commit | 36b8ffbe4ff1ce789319e76b5f7c326ceb00b94f (patch) | |
tree | 307612f4af46a2bd70375580a5c70186d8646715 | |
parent | e3bfe31ef8de86b004080465bf30e1605178a619 (diff) | |
download | gcc-36b8ffbe4ff1ce789319e76b5f7c326ceb00b94f.zip gcc-36b8ffbe4ff1ce789319e76b5f7c326ceb00b94f.tar.gz gcc-36b8ffbe4ff1ce789319e76b5f7c326ceb00b94f.tar.bz2 |
sysv4.h (LINK_TARGET_SPEC): Use two dashes for --oformat.
* config/rs6000/sysv4.h (LINK_TARGET_SPEC): Use two dashes for
--oformat.
* config/rs6000/sysv4le.h (LINK_TARGET_SPEC): Likewise.
From-SVN: r39576
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/rs6000/sysv4.h | 4 | ||||
-rw-r--r-- | gcc/config/rs6000/sysv4le.h | 4 |
3 files changed, 10 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6f9d780..920c9180 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2001-02-10 Geoffrey Keating <geoffk@redhat.com> + + * config/rs6000/sysv4.h (LINK_TARGET_SPEC): Use two dashes for + --oformat. + * config/rs6000/sysv4le.h (LINK_TARGET_SPEC): Likewise. + Fri Feb 9 15:05:27 2001 Christopher Faylor <cgf@cygnus.com> * config/i386/t-cygwin (T_CPPFLAGS): Use correct location for diff --git a/gcc/config/rs6000/sysv4.h b/gcc/config/rs6000/sysv4.h index 8b2f59f..da2f0b7 100644 --- a/gcc/config/rs6000/sysv4.h +++ b/gcc/config/rs6000/sysv4.h @@ -1161,9 +1161,9 @@ do { \ /* Override the default target of the linker. */ #define LINK_TARGET_SPEC "\ -%{mlittle: -oformat elf32-powerpcle } %{mlittle-endian: -oformat elf32-powerpcle } \ +%{mlittle: --oformat elf32-powerpcle } %{mlittle-endian: --oformat elf32-powerpcle } \ %{!mlittle: %{!mlittle-endian: %{!mbig: %{!mbig-endian: \ - %{mcall-solaris: -oformat elf32-powerpcle} \ + %{mcall-solaris: --oformat elf32-powerpcle} \ }}}}" /* Any specific OS flags. */ diff --git a/gcc/config/rs6000/sysv4le.h b/gcc/config/rs6000/sysv4le.h index 09ec2f7..1c0daea 100644 --- a/gcc/config/rs6000/sysv4le.h +++ b/gcc/config/rs6000/sysv4le.h @@ -31,9 +31,9 @@ Boston, MA 02111-1307, USA. */ #undef LINK_TARGET_SPEC #define LINK_TARGET_SPEC "\ -%{mbig: -oformat elf32-powerpc } %{mbig-endian: -oformat elf32-powerpc } \ +%{mbig: --oformat elf32-powerpc } %{mbig-endian: --oformat elf32-powerpc } \ %{!mlittle: %{!mlittle-endian: %{!mbig: %{!mbig-endian: \ - %{mcall-linux: -oformat elf32-powerpc} \ + %{mcall-linux: --oformat elf32-powerpc} \ }}}}" /* Define this macro as a C expression for the initializer of an |