diff options
author | Kai Tietz <kai.tietz@onevision.com> | 2009-07-28 16:52:21 +0000 |
---|---|---|
committer | Kai Tietz <ktietz@gcc.gnu.org> | 2009-07-28 18:52:21 +0200 |
commit | 032502c26ffec2ca9b3721df0ffd4808bd149e18 (patch) | |
tree | ea5ef58c9fe00521468bebc35384cb7d85442313 /gcc | |
parent | b29c2ffde02ef878d8bfccb6520decd7758463cd (diff) | |
download | gcc-032502c26ffec2ca9b3721df0ffd4808bd149e18.zip gcc-032502c26ffec2ca9b3721df0ffd4808bd149e18.tar.gz gcc-032502c26ffec2ca9b3721df0ffd4808bd149e18.tar.bz2 |
mingw-w64.h (LINK_SPEC): Add separating space between commands.
2009-07-28 Kai Tietz <kai.tietz@onevision.com>
* config/i386/mingw-w64.h (LINK_SPEC): Add
separating space between commands.
From-SVN: r150170
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/mingw-w64.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fc6cf1d..cd29b14 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-07-28 Kai Tietz <kai.tietz@onevision.com> + + * config/i386/mingw-w64.h (LINK_SPEC): Add + separating space between commands. + 2009-07-28 Jan Hubicka <jh@suse.cz> PR tree-optimization/40759 diff --git a/gcc/config/i386/mingw-w64.h b/gcc/config/i386/mingw-w64.h index 7996f69..e38418f 100644 --- a/gcc/config/i386/mingw-w64.h +++ b/gcc/config/i386/mingw-w64.h @@ -56,7 +56,7 @@ along with GCC; see the file COPYING3. If not see #endif #undef LINK_SPEC -#define LINK_SPEC SUB_LINK_SPEC "%{mwindows:--subsystem windows} \ +#define LINK_SPEC SUB_LINK_SPEC " %{mwindows:--subsystem windows} \ %{mconsole:--subsystem console} \ %{shared: %{mdll: %eshared and mdll are not compatible}} \ %{shared: --shared} %{mdll:--dll} \ |