diff options
author | Michael Meissner <meissner@gcc.gnu.org> | 1996-02-07 22:04:46 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1996-02-07 22:04:46 +0000 |
commit | 48a0fabb5752328029ee84953e39a1086c730d56 (patch) | |
tree | 680835d5a15b49f58fdb67f7636dcfc1a4d44cb4 | |
parent | 7ae6c85803f36a61ebf68a1561f27b90dd1d3fb6 (diff) | |
download | gcc-48a0fabb5752328029ee84953e39a1086c730d56.zip gcc-48a0fabb5752328029ee84953e39a1086c730d56.tar.gz gcc-48a0fabb5752328029ee84953e39a1086c730d56.tar.bz2 |
Do not use -V as if it were -v
From-SVN: r11180
-rw-r--r-- | gcc/config/rs6000/cygwin32.h | 2 | ||||
-rw-r--r-- | gcc/config/rs6000/netware.h | 2 | ||||
-rw-r--r-- | gcc/config/rs6000/sysv4.h | 4 | ||||
-rw-r--r-- | gcc/config/rs6000/win-nt.h | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/gcc/config/rs6000/cygwin32.h b/gcc/config/rs6000/cygwin32.h index 26e96bb..cdec7af 100644 --- a/gcc/config/rs6000/cygwin32.h +++ b/gcc/config/rs6000/cygwin32.h @@ -46,7 +46,7 @@ Boston, MA 02111-1307, USA. */ #undef LINK_SPEC -#define LINK_SPEC "%{V} %{v:%{!V:-V}}" +#define LINK_SPEC "%{v:-V}" /* No need for libgcc, it's in the shared library. */ diff --git a/gcc/config/rs6000/netware.h b/gcc/config/rs6000/netware.h index 83cd7cf..f6de2aa 100644 --- a/gcc/config/rs6000/netware.h +++ b/gcc/config/rs6000/netware.h @@ -183,7 +183,7 @@ toc_section () \ #undef ASM_SPEC #define ASM_SPEC "-u %(asm_cpu) \ -%{V} %{v:%{!V:-V}} %{Qy:} %{!Qn:-Qy} %{n} %{T} %{Ym,*} %{Yd,*} %{Wa,*:%*}" +{v:-V} %{Qy:} %{!Qn:-Qy} %{n} %{T} %{Ym,*} %{Yd,*} %{Wa,*:%*}" /* This is the end of what might become sysv4.h. */ /* Enable output of DBX (stabs) debugging information when asked for it. */ diff --git a/gcc/config/rs6000/sysv4.h b/gcc/config/rs6000/sysv4.h index 91a2a00..e91c7ee 100644 --- a/gcc/config/rs6000/sysv4.h +++ b/gcc/config/rs6000/sysv4.h @@ -535,7 +535,7 @@ do { \ /* Pass various options to the assembler */ #undef ASM_SPEC #define ASM_SPEC "-u %(asm_cpu) \ -%{V} %{v:%{!V:-V}} %{Qy:} %{!Qn:-Qy} %{n} %{T} %{Ym,*} %{Yd,*} %{Wa,*:%*} \ +%{v:-V} %{Qy:} %{!Qn:-Qy} %{n} %{T} %{Ym,*} %{Yd,*} %{Wa,*:%*} \ %{mrelocatable} %{mrelocatable-lib} %{memb} %{msdata: -memb} \ %{mlittle} %{mlittle-endian} %{mbig} %{mbig-endian}" @@ -728,7 +728,7 @@ do { \ #undef LINK_SPEC #define LINK_SPEC "\ -%{h*} %{V} %{v:%{!V:-V}} %{G*} \ +%{h*} %{v:-V} %{G*} \ %{b} %{Wl,*:%*} \ %{static:-dn -Bstatic} \ %{shared:-G -dy -z text %{!h*:%{o*:-h %*}}} \ diff --git a/gcc/config/rs6000/win-nt.h b/gcc/config/rs6000/win-nt.h index 9789131..0146eb6 100644 --- a/gcc/config/rs6000/win-nt.h +++ b/gcc/config/rs6000/win-nt.h @@ -50,7 +50,7 @@ Boston, MA 02111-1307, USA. */ %{v}" #undef LINK_SPEC -#define LINK_SPEC "%{V} %{v:%{!V:-V}}" +#define LINK_SPEC "%{v:-V}" /* Allow switches specified in LIB_SPEC, but don't do anything with them in the compiler. */ |