diff options
author | Yanfeng Liu <yfliu2008@qq.com> | 2025-07-08 12:22:25 +0800 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2025-07-15 14:03:06 +1000 |
commit | aa2362d4de3bed960b65c5e6e66544f68f2e7ed1 (patch) | |
tree | ea8f8a0673c359157878d6b4876d45b0d3e9bc02 | |
parent | 274306860b2d64b67ef6e8a14e8af3fd56c8d0ff (diff) |
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 <yfliu2008@qq.com>
-rw-r--r-- | ports/unix/Makefile | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/ports/unix/Makefile b/ports/unix/Makefile index 8bd58a254..4e4e81a96 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 |