From aa2362d4de3bed960b65c5e6e66544f68f2e7ed1 Mon Sep 17 00:00:00 2001 From: Yanfeng Liu Date: Tue, 8 Jul 2025 12:22:25 +0800 Subject: [PATCH] unix/Makefile: Drop include path of "i686-linux-gnu". This drops use of non-existing path `/usr/include/i686-linux-gnu` as default include paths shall suffice. Signed-off-by: Yanfeng Liu --- ports/unix/Makefile | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/ports/unix/Makefile b/ports/unix/Makefile index 8bd58a2542683..4e4e81a965c07 100644 --- a/ports/unix/Makefile +++ b/ports/unix/Makefile @@ -120,16 +120,6 @@ LDFLAGS += $(LDFLAGS_MOD) $(LDFLAGS_ARCH) -lm $(LDFLAGS_EXTRA) # Flags to link with pthread library LIBPTHREAD = -lpthread -ifeq ($(MICROPY_FORCE_32BIT),1) -# Note: you may need to install i386 versions of dependency packages, -# starting with linux-libc-dev:i386 -ifeq ($(MICROPY_PY_FFI),1) -ifeq ($(UNAME_S),Linux) -CFLAGS += -I/usr/include/i686-linux-gnu -endif -endif -endif - ifeq ($(MICROPY_USE_READLINE),1) INC += -I$(TOP)/shared/readline CFLAGS += -DMICROPY_USE_READLINE=1