Message ID | 20210728212701.30592-1-laurent.pinchart@ideasonboard.com (mailing list archive) |
---|---|
State | Not Applicable |
Delegated to: | Geert Uytterhoeven |
Headers | show |
Series | [abloader] Allow overridding CROSS_COMPILE | expand |
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
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@ideasonboard.com> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)