From 7a7ec2dd3758a9832471db2ccf0f8bf7b08ad6dc Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Tue, 12 Nov 2013 23:12:33 +0100 Subject: [PATCH] tstools: perform shared library linking step using gcc rather than ld Fixes http://autobuild.buildroot.net/results/c45/c45bbdaff6cff56b5646add38032f29bb5520f16 Using ld directly breaks with certain toolchain configurations. Signed-off-by: Peter Korsgaard --- package/tstools/tstools.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/tstools/tstools.mk b/package/tstools/tstools.mk index 377cc34f9..c9ac9f9c3 100644 --- a/package/tstools/tstools.mk +++ b/package/tstools/tstools.mk @@ -10,7 +10,8 @@ TSTOOLS_SOURCE = tstools-$(TSTOOLS_VERSION).tgz TSTOOLS_LICENSE = MPL v1.1 define TSTOOLS_BUILD_CMDS - $(TARGET_CONFIGURE_OPTS) $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) + $(TARGET_CONFIGURE_OPTS) LD="$(TARGET_CC)" $(TARGET_MAKE_ENV) \ + $(MAKE) -C $(@D) endef define TSTOOLS_INSTALL_TARGET_CMDS