From 0e51d28d063d61b36dfbbbdcbae32ec055611ec8 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Fri, 21 Sep 2007 08:19:27 +0000 Subject: drop LDFLAGS from OUTPUT_FORMAT until LD/LDFLAGS can be fixed in general --- TODO | 2 ++ libc/Makefile.in | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/TODO b/TODO index 9fb6d02dd..c87ccea9f 100644 --- a/TODO +++ b/TODO @@ -39,6 +39,8 @@ TODO list for the uClibc 0.9.29 release: *) 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: diff --git a/libc/Makefile.in b/libc/Makefile.in index b769dfca2..a21859166 100644 --- a/libc/Makefile.in +++ b/libc/Makefile.in @@ -54,7 +54,7 @@ lib-gdb-y += $(top_builddir)lib/libc.gdb 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) -- cgit v1.2.3