svn commit: trunk/uClibc: libc

vapier at uclibc.org vapier at uclibc.org
Fri Sep 21 08:19:27 UTC 2007


Author: vapier
Date: 2007-09-21 01:19:27 -0700 (Fri, 21 Sep 2007)
New Revision: 19924

Log:
drop LDFLAGS from OUTPUT_FORMAT until LD/LDFLAGS can be fixed in general

Modified:
   trunk/uClibc/TODO
   trunk/uClibc/libc/Makefile.in


Changeset:
Modified: trunk/uClibc/TODO
===================================================================
--- trunk/uClibc/TODO	2007-09-20 21:52:23 UTC (rev 19923)
+++ trunk/uClibc/TODO	2007-09-21 08:19:27 UTC (rev 19924)
@@ -39,6 +39,8 @@
     *) Should integrate test subdir better ... need to propagate CPU
 	CFLAGS/LDFLAGS to the build/link for target binaries so that when we have
 	a multilib toolchain, the proper ABI is selected.
+    *) LD/LDFLAGS handling is broken ... stop invoking the linker directly and
+	have everything go through the compiler driver
 
 
 TODO list for the uClibc 1.0.0 release:

Modified: trunk/uClibc/libc/Makefile.in
===================================================================
--- trunk/uClibc/libc/Makefile.in	2007-09-20 21:52:23 UTC (rev 19923)
+++ trunk/uClibc/libc/Makefile.in	2007-09-21 08:19:27 UTC (rev 19924)
@@ -54,7 +54,7 @@
 lib-so-y += $(libc)
 objclean-y += libc_clean
 
-OUTPUT_FORMAT = $(CC) $(CFLAGS) $(LDFLAGS) -Wl,--verbose 2>&1 | sed -n 's/^OUTPUT_FORMAT("\([^"]*\)",.*/\1/p'
+OUTPUT_FORMAT = $(CC) $(CFLAGS) -Wl,--verbose 2>&1 | sed -n 's/^OUTPUT_FORMAT("\([^"]*\)",.*/\1/p'
 
 ifeq ($(DOMULTI),n)
 $(libc:.$(MAJOR_VERSION)=): $(libc_OUT)/libc_so.a $(LIBS-libc.so)




More information about the uClibc-cvs mailing list