diff options
author | Hao Wu <wuhaotsh@google.com> | 2025-07-28 09:44:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-28 09:44:06 -0700 |
commit | 183c9ff8056b7946db1ae49cc23e8980ac413174 (patch) | |
tree | ba4da5563b80867b199f62732289e6686507df17 /ast27x0 | |
parent | f9eb0bb57decbab860a81712c56132c2102fa98e (diff) | |
parent | 7b1eb5f7fe6a85a03a1e40aa703a6ebbdb644e31 (diff) | |
download | vbootrom-master.zip vbootrom-master.tar.gz vbootrom-master.tar.bz2 |
ast27x0: Fix Makefile to unconditionally set CC to support correct cross-compilation
Diffstat (limited to 'ast27x0')
-rw-r--r-- | ast27x0/Makefile | 6 |
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) |