aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Gall <tom.gall@linaro.org>2013-04-11 23:35:21 +0000
committerTom Gall <tom.gall@linaro.org>2013-04-11 23:35:21 +0000
commitf1d1515b313c9dd298050ed705114b215e5e9b27 (patch)
tree83c7ef4e39a3a9a472f0f35f45e271a128c97c13
parent37541f25636b9a2adce20260001101e40fac0e4c (diff)
Remove cross compiler prefix which given a native compileenable-armhf
with current ubuntu on ARM will cause a failure since the tool doesn't exist. ar of course does.
-rw-r--r--src/runtime/build/cpu/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/build/cpu/Makefile b/src/runtime/build/cpu/Makefile
index e87f11d..c73c3ff 100644
--- a/src/runtime/build/cpu/Makefile
+++ b/src/runtime/build/cpu/Makefile
@@ -75,7 +75,7 @@ ifeq ($(CL_MACH), lnx_arm)
CROSS_COMPILE_PREFIX = $(ARM_TOOLCHAIN_PREFIX)
CC := $(CROSS_COMPILE_PREFIX)gcc
CPP := $(CROSS_COMPILE_PREFIX)g++
-AR := $(CROSS_COMPILE_PREFIX)ar
+AR := ar
#CFLAGS += -fPIC -m32 -DDEF_INCLUDE_ARM -DDEF_INCLUDE_C64XP
CFLAGS += -march=armv7-a $(ARM_FLOAT_ARGS) -ftree-vectorize -ftree-vectorizer-verbose=0 -fsigned-char -fPIC -DDEF_INCLUDE_ARM
LDFLAGS :=