From be005eb7acc1fa08aa92b47d905e5a8ec38f5d6e Mon Sep 17 00:00:00 2001 From: Dmitry Prokhorov Date: Sat, 5 Jan 2013 19:23:30 +0400 Subject: Add fix to support Summon/Linaro GCC ARM embedded toolchain. Signed-off-by: Dmitry Prokhorov --- support/make/build-rules.mk | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'support') diff --git a/support/make/build-rules.mk b/support/make/build-rules.mk index d180c89..f852cab 100644 --- a/support/make/build-rules.mk +++ b/support/make/build-rules.mk @@ -39,6 +39,10 @@ ifneq ($(findstring ARM/embedded,$(shell $(CC) --version)),) # GCC ARM Embedded, https://launchpad.net/gcc-arm-embedded/ LD_TOOLCHAIN_PATH := $(LDDIR)/toolchains/gcc-arm-embedded endif +ifneq ($(findstring Linaro GCC,$(shell $(CC) --version)),) +# Summon/Linaro GCC ARM Embedded, https://github.com/esden/summon-arm-toolchain +LD_TOOLCHAIN_PATH := $(LDDIR)/toolchains/gcc-arm-embedded +endif # Add toolchain directory to LD search path TOOLCHAIN_LDFLAGS := -L $(LD_TOOLCHAIN_PATH) -- cgit v1.2.3