diff options
author | Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> | 2009-09-05 14:14:28 +0000 |
---|---|---|
committer | François-Xavier Coudert <fxcoudert@gcc.gnu.org> | 2009-09-05 14:14:28 +0000 |
commit | 896237cdcd1172e00b0b672ce846aa5c885f3c9e (patch) | |
tree | ee083b1eb36736a3dca95640ba49a6e97f4c07fb /gcc | |
parent | 880b527fd8f5cab04d060212d2c3ac5da7055b3d (diff) | |
download | gcc-896237cdcd1172e00b0b672ce846aa5c885f3c9e.zip gcc-896237cdcd1172e00b0b672ce846aa5c885f3c9e.tar.gz gcc-896237cdcd1172e00b0b672ce846aa5c885f3c9e.tar.bz2 |
re PR target/41024 (driver passes wrong parameter to as)
PR target/41024
* config/i386/mingw-w64.h (ASM_SPEC): Pass -v instead of -V to
the assembler.
From-SVN: r151450
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/i386/mingw-w64.h | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d11805b..09f4805 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2009-09-05 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> + + PR target/41024 + * config/i386/mingw-w64.h (ASM_SPEC): Pass -v instead of -V to + the assembler. + 2009-09-04 Uros Bizjak <ubizjak@gmail.com> Revert: diff --git a/gcc/config/i386/mingw-w64.h b/gcc/config/i386/mingw-w64.h index e38418f..8584082 100644 --- a/gcc/config/i386/mingw-w64.h +++ b/gcc/config/i386/mingw-w64.h @@ -36,7 +36,7 @@ along with GCC; see the file COPYING3. If not see /* Enable multilib. */ #undef ASM_SPEC -#define ASM_SPEC "%{v:-V} %{n} %{T} %{Ym,*} %{Yd,*} \ +#define ASM_SPEC "%{v:-v} %{n} %{T} %{Ym,*} %{Yd,*} \ %{Wa,*:%*} %{m32:--32} %{m64:--64}" #if TARGET_64BIT_DEFAULT |