From: Michael Tremer Date: Wed, 24 Oct 2018 16:27:10 +0000 (+0100) Subject: Config: Set IS_32BIT when running on 32 bit X-Git-Tag: v2.21-core125~41^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b26071d3787edf24084bbf8fb810894e7de31f8e;p=people%2Fstevee%2Fipfire-2.x.git Config: Set IS_32BIT when running on 32 bit Signed-off-by: Michael Tremer --- diff --git a/lfs/Config b/lfs/Config index 516fb1cabb..76f279da96 100644 --- a/lfs/Config +++ b/lfs/Config @@ -37,10 +37,22 @@ ifeq "$(BUILD_ARCH)" "aarch64" IS_64BIT = 1 endif +ifeq "$(BUILD_ARCH)" "armv7hl" + IS_32BIT = 1 +endif + +ifeq "$(BUILD_ARCH)" "armv5tel" + IS_32BIT = 1 +endif + ifeq "$(BUILD_ARCH)" "x86_64" IS_64BIT = 1 endif +ifeq "$(BUILD_ARCH)" "i586" + IS_32BIT = 1 +endif + ifeq "$(TOOLCHAIN)" "1" PREFIX = $(TOOLS_DIR) else