@iaco79
I don't see any relationship between link from your post and Irrlicht.
Android Irrlicht Compling Error: Argument list too long
Re: Android Irrlicht Compling Error: Argument list too long
Library helping with network requests, tasks management, logger etc in desktop and mobile apps: https://github.com/GrupaPracuj/hermes
Re:
example: //split 2 part
LOCAL_SRC_FILES := \
$(FF_AVCODEC_SRC)
->
LOCAL_SRC_FILES := \
$(FF_AVCODEC_SRC_1) \
$(FF_AVCODEC_SRC_2)
//////////
or use crystax NDK https://www.crystax.net/en/android/ndk
/////////
or download patch
https://android-review.googlesource.com/#/c/36564
android.mk
set LOCAL_SHORT_COMMANDS = true
LOCAL_SRC_FILES := \
$(FF_AVCODEC_SRC)
->
LOCAL_SRC_FILES := \
$(FF_AVCODEC_SRC_1) \
$(FF_AVCODEC_SRC_2)
//////////
or use crystax NDK https://www.crystax.net/en/android/ndk
/////////
or download patch
https://android-review.googlesource.com/#/c/36564
android.mk
set LOCAL_SHORT_COMMANDS = true
hybrid wrote:Well, as the compiler tells you, the argument list (command line) is too long. You probably have to rewrite the Makefile