The cross-compiler name prefix may not be aarch64-linux-gnu-. Allow specifying it by setting the CROSS_COMPILE environment variable as documented in README.md. Signed-off-by: Laurent Pinchart <laurent.pinchart@xxxxxxxxxxxxxxxx> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c5512e5e6f0d..e6192bd9b6d8 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # SPDX-License-Identifier: GPL-2.0+ # -CROSS_COMPILE=aarch64-linux-gnu- +CROSS_COMPILE?=aarch64-linux-gnu- TGT = jump ASRC += start.S -- Regards, Laurent Pinchart