There is a syntax error in r213009 causing a FTBFS in trunk with
--target=i686-pc-cygwin. Patch attached, with which trunk now builds
for said target.
--
Yaakov Selkowitz
Associate Software Engineer, ARM
Red Hat, Inc.
2014-08-12 Yaakov Selkowitz <yselk...@redhat.com>
* config/i386/cygming-crtbegin.c (deregister_frame_fn):
Fix declaration syntax.
Index: libgcc/config/i386/cygming-crtbegin.c
===================================================================
--- libgcc/config/i386/cygming-crtbegin.c (revision 213759)
+++ libgcc/config/i386/cygming-crtbegin.c (working copy)
@@ -102,7 +102,7 @@
/* Handle of libgcc's DLL reference. */
HANDLE hmod_libgcc;
-static void * (*deregister_frame_fn) (const void *) == NULL;
+static void * (*deregister_frame_fn) (const void *) = NULL;
#endif
#if TARGET_USE_JCR_SECTION