glibc: fix for older i?86 cpu's

with such cpu the libc fails with CPU ISA level is lower than required. So this disable
ISA support.

Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
This commit is contained in:
Arne Fitzenreiter
2021-07-06 06:18:09 +02:00
parent ede29dd556
commit 955ab2f5c3

View File

@@ -55,6 +55,10 @@ ifeq "$(BUILD_ARCH)" "aarch64"
CFLAGS += -Wno-error=maybe-uninitialized
endif
ifeq "$(BUILD_ARCH)" "i586"
EXTRA_CONFIG += libc_cv_include_x86_isa_level=no
endif
# Add some general configuration flags
EXTRA_CONFIG += \
--disable-profile \