[uClibc-cvs] uClibc Rules.mak,1.161,1.162

Erik Andersen andersen at uclibc.org
Wed Jan 14 10:32:00 UTC 2004


Update of /var/cvs/uClibc
In directory nail:/tmp/cvs-serv25668

Modified Files:
	Rules.mak 
Log Message:
Use the gcc 3.4 -funit-at-a-time optimization when available


Index: Rules.mak
===================================================================
RCS file: /var/cvs/uClibc/Rules.mak,v
retrieving revision 1.161
retrieving revision 1.162
diff -u -d -r1.161 -r1.162
--- Rules.mak	4 Jan 2004 05:32:21 -0000	1.161
+++ Rules.mak	14 Jan 2004 10:31:58 -0000	1.162
@@ -170,8 +170,10 @@
 	PICFLAG=-fpic
 endif
 
-# use '-Os' optimization if available, else use -O2, allow Config to override
+# Use '-Os' optimization if available, else use -O2, allow Config to override
 OPTIMIZATION+=$(call check_gcc,-Os,-O2)
+# Use the gcc 3.4 -funit-at-a-time optimization when available
+OPTIMIZATION+=$(call check_gcc,-funit-at-a-time,)
 
 
 # Add a bunch of extra pedantic annoyingly strict checks




More information about the uClibc-cvs mailing list