ARCH is pretty much always going to be 'arm' so it makes more sense to default it in the makefile. Signed-off-by: Peter Maydell <peter.maydell at linaro.org> --- Makefile | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index 67d840b..38f1df6 100644 --- a/Makefile +++ b/Makefile @@ -26,6 +26,7 @@ IMAGE = linux-system.axf LD_SCRIPT = model.lds.S CROSS_COMPILE ?= arm-unknown-eabi- +ARCH ?= arm CC = $(CROSS_COMPILE)gcc LD = $(CROSS_COMPILE)ld -- 1.7.5.4