Android Irrlicht Compling Error: Argument list too long

You are an experienced programmer and have a problem with the engine, shaders, or advanced effects? Here you'll get answers.
No questions about C++ programming or topics which are answered in the tutorials!
Nadro
Posts: 1648
Joined: Sun Feb 19, 2006 9:08 am
Location: Warsaw, Poland

Re: Android Irrlicht Compling Error: Argument list too long

Post by Nadro »

@iaco79
I don't see any relationship between link from your post and Irrlicht.
Library helping with network requests, tasks management, logger etc in desktop and mobile apps: https://github.com/GrupaPracuj/hermes
feelthat
Posts: 194
Joined: Sat Feb 02, 2013 5:27 am

Re:

Post by feelthat »

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


hybrid wrote:Well, as the compiler tells you, the argument list (command line) is too long. You probably have to rewrite the Makefile
Post Reply