aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripts/Makefile.lib8
1 files changed, 6 insertions, 2 deletions
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib
index 22c64306b..be679b624 100644
--- a/scripts/Makefile.lib
+++ b/scripts/Makefile.lib
@@ -117,8 +117,12 @@ a_flags = -Wp,-MD,$(depfile) $(NOSTDINC_FLAGS) $(CPPFLAGS) \
117 117
118cpp_flags = -Wp,-MD,$(depfile) $(NOSTDINC_FLAGS) $(__cpp_flags) 118cpp_flags = -Wp,-MD,$(depfile) $(NOSTDINC_FLAGS) $(__cpp_flags)
119 119
120# TODO: seems to be a wrong thing to do! LDFLAGS contains gcc's flags! 120# Seems to be a wrong thing to do. LDFLAGS contains gcc's flags,
121ld_flags = $(LDFLAGS) $(EXTRA_LDFLAGS) 121# yet ld_flags is fed to ld.
122#ld_flags = $(LDFLAGS) $(EXTRA_LDFLAGS)
123# Remove the -Wl, prefix from linker options normally passed through gcc
124ld_flags = $(filter-out -Wl$(comma)%,$(LDFLAGS) $(EXTRA_LDFLAGS))
125
122 126
123# Finds the multi-part object the current object will be linked into 127# Finds the multi-part object the current object will be linked into
124modname-multi = $(sort $(foreach m,$(multi-used),\ 128modname-multi = $(sort $(foreach m,$(multi-used),\