[Mingw-w64-public] can anyone supply a debug version of cc1plus.exe?

2015-05-22 Thread asmwarrior
I just want to hunt the GCC bug: (big pch file will crash cc1plus.exe)
56926 – Crash (without ICE) while compiling Boost.Math - 
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56926

It turns out that build the GCC and G++ myself is too complex for me, so I 
would like to see if someone can supply a debug version of tool chain, so that 
I can run them under gdb to see where it crashed.

BTW: I see that the latest LD can have separate debug file generated, so maybe, 
we can use it.

Thanks.

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Mingw-w64-public mailing list
Mingw-w64-public@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mingw-w64-public


[Mingw-w64-public] [PATCH] Install *.c files as headers as well.

2015-05-22 Thread Jacek Caban
I lately added msinkaut_i.c to includes (like MS does), but it's not
installed by build system. The attached patch fixed that.

---
 mingw-w64-headers/Makefile.am  | 1 +
 mingw-w64-headers/configure.ac | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)


diff --git a/mingw-w64-headers/Makefile.am b/mingw-w64-headers/Makefile.am
index a8f0990..2e66933 100644
--- a/mingw-w64-headers/Makefile.am
+++ b/mingw-w64-headers/Makefile.am
@@ -36,6 +36,7 @@ dist-hook:
 	find $(distdir) -name ".svn" -type d -delete
 
 EXTRA_HEADERS = \
+  include/*.c \
   include/*.dlg \
   include/*.h \
   include/*.h16 \
diff --git a/mingw-w64-headers/configure.ac b/mingw-w64-headers/configure.ac
index 312cf0a..7e3863d 100644
--- a/mingw-w64-headers/configure.ac
+++ b/mingw-w64-headers/configure.ac
@@ -41,7 +41,7 @@ AM_CONDITIONAL([HAVE_WIDL],[AS_VAR_TEST_SET([WIDL])])
 
 BASEHEAD_LIST="crt/_bsd_types.h crt/_cygwin.h crt/_mingw.h crt/_mingw_mac.h crt/_mingw_print_push.h crt/_mingw_print_pop.h crt/_mingw_secapi.h crt/_mingw_unicode.h crt/_timeval.h crt/crtdefs.h crt/excpt.h crt/intrin.h crt/vadefs.h "$srcdir/include/*.h
 SECHEAD_LIST="$srcdir/crt/sec_api/stralign_s.h"
-for i in dlg h16 hxx rh ver; do
+for i in c dlg h16 hxx rh ver; do
   BASEHEAD_LIST="$BASEHEAD_LIST "$srcdir/include/*.$i
 done
 #FIXME: Add in base directx

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
Mingw-w64-public mailing list
Mingw-w64-public@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mingw-w64-public