aboutsummaryrefslogtreecommitdiff
path: root/ast27x0
diff options
context:
space:
mode:
authorHao Wu <wuhaotsh@google.com>2025-07-28 09:44:06 -0700
committerGitHub <noreply@github.com>2025-07-28 09:44:06 -0700
commit183c9ff8056b7946db1ae49cc23e8980ac413174 (patch)
treeba4da5563b80867b199f62732289e6686507df17 /ast27x0
parentf9eb0bb57decbab860a81712c56132c2102fa98e (diff)
parent7b1eb5f7fe6a85a03a1e40aa703a6ebbdb644e31 (diff)
downloadvbootrom-master.zip
vbootrom-master.tar.gz
vbootrom-master.tar.bz2
Merge pull request #10 from jamin-aspeed/masterHEADmaster
ast27x0: Fix Makefile to unconditionally set CC to support correct cross-compilation
Diffstat (limited to 'ast27x0')
-rw-r--r--ast27x0/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/ast27x0/Makefile b/ast27x0/Makefile
index 5d13ba1..4cae78d 100644
--- a/ast27x0/Makefile
+++ b/ast27x0/Makefile
@@ -15,9 +15,9 @@
CROSS_COMPILE ?= aarch64-linux-gnu-
-CC ?= $(CROSS_COMPILE)gcc
-OBJCOPY ?= $(CROSS_COMPILE)objcopy
-OBJDUMP ?= $(CROSS_COMPILE)objdump
+CC = $(CROSS_COMPILE)gcc
+OBJCOPY = $(CROSS_COMPILE)objcopy
+OBJDUMP = $(CROSS_COMPILE)objdump
GIT_VERSION := git-$(shell git rev-parse --short HEAD)