[uClibc-cvs] uClibc/ldso/ldso/i386 dl-startup.h,1.5,1.6

Erik Andersen andersen at uclibc.org
Tue Apr 20 06:33:00 UTC 2004


Update of /var/cvs/uClibc/ldso/ldso/i386
In directory nail:/tmp/cvs-serv21542/ldso/ldso/i386

Modified Files:
	dl-startup.h 
Log Message:
Cope with gcc 3.4's more aggressive persuit of attribute unused


Index: dl-startup.h
===================================================================
RCS file: /var/cvs/uClibc/ldso/ldso/i386/dl-startup.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- a/dl-startup.h	17 Feb 2004 10:55:55 -0000	1.5
+++ b/dl-startup.h	20 Apr 2004 06:32:57 -0000	1.6
@@ -5,7 +5,7 @@
  */
 
 /* For x86 we do not need any special setup so go right to _dl_boot() */
-#define DL_BOOT(X) __attribute__ ((unused)) void _dl_boot (X)
+#define DL_BOOT(X) __attribute_used__ void _dl_boot (X)
 
 /* Get a pointer to the argv array.  On many platforms this can be just
  * the address if the first argument, on other platforms we need to




More information about the uClibc-cvs mailing list