svn commit: trunk/uClibc/include

vapier at uclibc.org vapier at uclibc.org
Wed Jan 11 01:22:46 UTC 2006


Author: vapier
Date: 2006-01-10 17:22:44 -0800 (Tue, 10 Jan 2006)
New Revision: 13229

Log:
fix warnings when building on sparc

Modified:
   trunk/uClibc/include/libc-internal.h


Changeset:
Modified: trunk/uClibc/include/libc-internal.h
===================================================================
--- trunk/uClibc/include/libc-internal.h	2006-01-11 01:22:14 UTC (rev 13228)
+++ trunk/uClibc/include/libc-internal.h	2006-01-11 01:22:44 UTC (rev 13229)
@@ -76,7 +76,11 @@
 
 /* Tacking on "\n\t#" to the section name makes gcc put it's bogus
    section attributes on what looks like a comment to the assembler.  */
-# define __sec_comment "\n\t#"
+# ifdef __sparc__ //HAVE_SECTION_QUOTES
+#  define __sec_comment "\"\n\t#\""
+# else
+#  define __sec_comment "\n\t#"
+# endif
 # ifdef __cris__
 #  define link_warning(symbol, msg)
 # else




More information about the uClibc-cvs mailing list