diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 8 | ||||
-rw-r--r-- | gcc/config/i386/cygwin.h | 1 | ||||
-rw-r--r-- | gcc/config/i386/mingw32.h | 1 |
3 files changed, 9 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0ebe628..a31d8b5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2014-04-23 Nick Clifton <nickc@redhat.com> + + * config/i386/cygwin.h (ENDFILE_SPEC): Include + default-manifest.o if it can be found in the search path. + * config/i386/mingw32.h (ENDFILE_SPEC): Likewise. + 2014-04-23 Terry Guo <terry.guo@arm.com> * config/arm/arm.h (ASM_APP_OFF): Re-define it in a cleaner way. @@ -78,7 +84,7 @@ 2014-04-22 H.J. Lu <hongjiu.lu@intel.com> PR target/60868 - * config/i386/i386.c (ix86_expand_set_or_movmem): Call counter_mode + * config/i386/i386.c (ix86_expand_set_or_movmem): Call counter_mode on count_exp to get mode. 2014-04-22 Andrew Pinski <apinski@cavium.com> diff --git a/gcc/config/i386/cygwin.h b/gcc/config/i386/cygwin.h index f7b9a28..165d3aa 100644 --- a/gcc/config/i386/cygwin.h +++ b/gcc/config/i386/cygwin.h @@ -45,6 +45,7 @@ along with GCC; see the file COPYING3. If not see #undef ENDFILE_SPEC #define ENDFILE_SPEC \ "%{Ofast|ffast-math|funsafe-math-optimizations:crtfastmath.o%s}\ + %{!shared:%:if-exists(default-manifest.o%s)}\ crtend.o%s" /* Normally, -lgcc is not needed since everything in it is in the DLL, but we diff --git a/gcc/config/i386/mingw32.h b/gcc/config/i386/mingw32.h index f563820..4cfd5f0 100644 --- a/gcc/config/i386/mingw32.h +++ b/gcc/config/i386/mingw32.h @@ -148,6 +148,7 @@ along with GCC; see the file COPYING3. If not see #undef ENDFILE_SPEC #define ENDFILE_SPEC \ "%{Ofast|ffast-math|funsafe-math-optimizations:crtfastmath.o%s} \ + %{!shared:%:if-exists(default-manifest.o%s)}\ crtend.o%s" /* Override startfile prefix defaults. */ |