[uClibc-cvs] svn commit: trunk/buildroot/toolchain/gcc

andersen at uclibc.org andersen at uclibc.org
Sun May 1 00:34:11 UTC 2005


Author: andersen
Date: 2005-04-30 18:34:11 -0600 (Sat, 30 Apr 2005)
New Revision: 10216

Log:
It is now official, the cause of the mysterious gcc 3.3.5 exception
handling failure is definately sjlj. Only enable it for the apparently
broken gcc 3.3.3 toolchain, which _does_ need it for exception handling
to work properly.


Modified:
   trunk/buildroot/toolchain/gcc/Config.in


Changeset:
Modified: trunk/buildroot/toolchain/gcc/Config.in
===================================================================
--- trunk/buildroot/toolchain/gcc/Config.in	2005-05-01 00:22:03 UTC (rev 10215)
+++ trunk/buildroot/toolchain/gcc/Config.in	2005-05-01 00:34:11 UTC (rev 10216)
@@ -59,7 +59,8 @@
 
 config BR2_GCC_USE_SJLJ_EXCEPTIONS
 	string
-	default "--enable-sjlj-exceptions"
+	default "--enable-sjlj-exceptions" if BR2_GCC_VERSION_3_3_3
+	default ""
 	help
 	    Currently the unwind stuff seems to work for staticly linked apps
 	    but not dynamic.  So use setjmp/longjmp exceptions by default.



More information about the uClibc-cvs mailing list