From 8ee27a36b98e9305795843965f991ec5a50ed6d1 Mon Sep 17 00:00:00 2001 From: Ivan Folgueira Bande Date: Wed, 27 Aug 2025 20:58:13 +0200 Subject: [PATCH] only use nostdinc in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 57cfed9..4e84c2d 100644 --- a/Makefile +++ b/Makefile @@ -86,7 +86,7 @@ ifndef ANDROID_NDK_HOME $(error ANDROID_NDK_HOME is not set) endif -build-libsds-for-android-arch: NIM_PARAMS := $(NIM_PARAMS) --passC="-nostdinc --sysroot=$ANDROID_TOOLCHAIN_DIR/sysroot -I$(ANDROID_TOOLCHAIN_DIR)/sysroot/usr/include" +build-libsds-for-android-arch: NIM_PARAMS := $(NIM_PARAMS) --passC="-nostdinc -I$(ANDROID_TOOLCHAIN_DIR)/sysroot/usr/include" build-libsds-for-android-arch: CPU=$(CPU) ABIDIR=$(ABIDIR) ANDROID_ARCH=$(ANDROID_ARCH) ANDROID_COMPILER=$(ANDROID_COMPILER) \ ANDROID_TOOLCHAIN_DIR=$(ANDROID_TOOLCHAIN_DIR) $(ENV_SCRIPT) \