aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2022-05-07 22:58:39 +0200
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2022-05-07 23:17:25 +0200
commitecd4e5cf18b183b4b4679b2c1ce96df605b81746 (patch)
tree0a92e27bab9c6dc54d67d5ad565d87ce9c0a0676 /Makefile
parent1a16e66e6543dbe8a78f7762b3bb13444eab8ab2 (diff)
downloadu-boot-ecd4e5cf18b183b4b4679b2c1ce96df605b81746.zip
u-boot-ecd4e5cf18b183b4b4679b2c1ce96df605b81746.tar.gz
u-boot-ecd4e5cf18b183b4b4679b2c1ce96df605b81746.tar.bz2
Makefile: support CROSS_COMPILE=armv7a-*
Gentoo uses armv7a-hardfloat-linux-gnueabi- as cross compiler prefix. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6eceeb3..00caaaf 100644
--- a/Makefile
+++ b/Makefile
@@ -30,7 +30,7 @@ else ifneq (,$(findstring $(MK_ARCH), "i386" "i486" "i586" "i686"))
export HOST_ARCH=$(HOST_ARCH_X86)
else ifneq (,$(findstring $(MK_ARCH), "aarch64" "armv8l"))
export HOST_ARCH=$(HOST_ARCH_AARCH64)
-else ifneq (,$(findstring $(MK_ARCH), "arm" "armv7" "armv7l"))
+else ifneq (,$(findstring $(MK_ARCH), "arm" "armv7" "armv7a" "armv7l"))
export HOST_ARCH=$(HOST_ARCH_ARM)
else ifeq ("riscv32", $(MK_ARCH))
export HOST_ARCH=$(HOST_ARCH_RISCV32)