aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-06-06 16:11:12 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-06-06 16:11:12 +0000
commit401de648a797c5931df1ade02c26270c82c3a345 (patch)
tree44741c8de0a3fc2dfda08f24f199917f8a905719 /scripts
parent7bdf0c82da3713ec2a0f0090ba663c1167d10a67 (diff)
downloadbusybox-401de648a797c5931df1ade02c26270c82c3a345.tar.gz
Build system: track -Wl,-elf2flt in CFLAGS_busybox too.
Document in comments that it generally should be thers, not in LDFLAGS
Diffstat (limited to 'scripts')
-rw-r--r--scripts/Makefile.lib3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib
index e1e0ba481..22c64306b 100644
--- a/scripts/Makefile.lib
+++ b/scripts/Makefile.lib
@@ -117,6 +117,7 @@ a_flags = -Wp,-MD,$(depfile) $(NOSTDINC_FLAGS) $(CPPFLAGS) \
cpp_flags = -Wp,-MD,$(depfile) $(NOSTDINC_FLAGS) $(__cpp_flags)
+# TODO: seems to be a wrong thing to do! LDFLAGS contains gcc's flags!
ld_flags = $(LDFLAGS) $(EXTRA_LDFLAGS)
# Finds the multi-part object the current object will be linked into
@@ -146,6 +147,8 @@ $(obj)/%:: $(src)/%_shipped
# Linking
# ---------------------------------------------------------------------------
+# TODO: LDFLAGS usually is supposed to contain gcc's flags, not ld's.
+# but here we feed them to ld!
quiet_cmd_ld = LD $@
cmd_ld = $(LD) $(LDFLAGS) $(EXTRA_LDFLAGS) $(LDFLAGS_$(@F)) \
$(filter-out FORCE,$^) -o $@