aboutsummaryrefslogtreecommitdiff
path: root/util/kconfig
diff options
context:
space:
mode:
authorChristian Ruppert <idl0r@qasl.de>2011-12-17 21:56:05 +0100
committerPatrick Georgi <patrick@georgi-clan.de>2011-12-21 16:27:01 +0100
commit74b659992b3283ac8e0f7aa3d371f93144771451 (patch)
tree461e43b89e93fa20789acea9709d719dda2aad4f /util/kconfig
parent1c80cf04fe6ffd9508e9d142b6bff03fd7006f95 (diff)
Respect linker order
Linking fails when using -Wl,--as-needed and/or esp. when forcing --as-needed through a compiler specs file. A proper compile/link command would look like: $(CC) $(CFLAGS) $(LDFLAGS) -o foo $(OBJS) $(LIBS). So the *FLAGS must be passed *before* the objects while the libraries/dependencies must be passed *after* the objects. For more details see: http://www.gentoo.org/proj/en/qa/asneeded.xml Change-Id: I5a5b05e1cab8a2d88ce56c92d9b2f991ca1ee6c0 Signed-off-by: Christian Ruppert <idl0r@qasl.de> Reviewed-on: http://review.coreboot.org/494 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'util/kconfig')
-rw-r--r--util/kconfig/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/kconfig/Makefile b/util/kconfig/Makefile
index 477ff03ecb..0e108a33c0 100644
--- a/util/kconfig/Makefile
+++ b/util/kconfig/Makefile
@@ -338,8 +338,8 @@ $(objk)/zconf.tab.c: $(srck)/zconf.tab.c_shipped
$(objk)/lxdialog/lxdialog: $(objk)/dochecklxdialog \
$(patsubst %,$(objk)/lxdialog/%,$(lxdialog))
- $(HOSTCC) $(HOSTCFLAGS) $(HOST_EXTRACFLAGS) $(HOST_LOADLIBES) \
- $(patsubst %,$(objk)/lxdialog/%,$(lxdialog)) -o $@
+ $(HOSTCC) $(HOSTCFLAGS) $(HOST_EXTRACFLAGS) \
+ $(patsubst %,$(objk)/lxdialog/%,$(lxdialog)) $(HOST_LOADLIBES) -o $@
$(objk)/lxdialog/%.o: $(srck)/lxdialog/%.c
$(HOSTCC) $(HOSTCFLAGS) $(HOST_EXTRACFLAGS) $^ -c -o $@