svn commit: branches/uClibc_0_9_29: libc

vapier at uclibc.org vapier at uclibc.org
Sat Jan 5 09:39:23 PST 2008


Author: vapier
Date: 2008-01-05 09:39:23 -0800 (Sat, 05 Jan 2008)
New Revision: 20773

Log:
Merge r19924 by vapier from trunk:
drop LDFLAGS from OUTPUT_FORMAT until LD/LDFLAGS can be fixed in general


Modified:
   branches/uClibc_0_9_29/TODO
   branches/uClibc_0_9_29/libc/Makefile.in


Changeset:
Modified: branches/uClibc_0_9_29/TODO
===================================================================
--- branches/uClibc_0_9_29/TODO	2008-01-05 17:39:03 UTC (rev 20772)
+++ branches/uClibc_0_9_29/TODO	2008-01-05 17:39:23 UTC (rev 20773)
@@ -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: branches/uClibc_0_9_29/libc/Makefile.in
===================================================================
--- branches/uClibc_0_9_29/libc/Makefile.in	2008-01-05 17:39:03 UTC (rev 20772)
+++ branches/uClibc_0_9_29/libc/Makefile.in	2008-01-05 17:39:23 UTC (rev 20773)
@@ -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