Using NDK - r8b,
I created a standalone toolchain, added the bin folder of that toolchain to my PATH.
ran
./configure --config=Android --no-samples --no-tests
make -j4
Here's the info from the first compile error:
** Compiling src/ASCIIEncoding.cpp (debug, static)
arm-linux-androideabi-g++ -Iinclude -I/common/poco-1.4.4-all/CppUnit/include -I/common/poco-1.4.4-all/Foundation/include -I/common/poco-1.4.4-all/XML/include -I/common/poco-1.4.4-all/Util/include -I/common/poco-1.4.4-all/Net/include -I/common/poco-1.4.4-all/Crypto/include -I/common/poco-1.4.4-all/NetSSL_OpenSSL/include -I/common/poco-1.4.4-all/Data/include -I/common/poco-1.4.4-all/Data/SQLite/include -I/common/poco-1.4.4-all/Data/ODBC/include -I/common/poco-1.4.4-all/Data/MySQL/include -I/common/poco-1.4.4-all/Zip/include -I/common/poco-1.4.4-all/PageCompiler/include -I/common/poco-1.4.4-all/PageCompiler/File2Page/include -mthumb -fpic -ffunction-sections -funwind-tables -fstack-protector -fno-strict-aliasing -finline-limit=64 -frtti -fexceptions -DPOCO_BUILD_HOST=unknown14109fcff0b7 -DPOCO_ANDROID -DPOCO_NO_FPENVIRONMENT -DPOCO_NO_WSTRING -DPOCO_NO_SHAREDMEMORY -g -D_DEBUG -c src/AsyncChannel.cpp -o /common/poco-1.4.4-all/Foundation/obj/Android/armeabi/debug_static/AsyncChannel.o
arm-linux-androideabi-g++ -Iinclude -I/common/poco-1.4.4-all/CppUnit/include -I/common/poco-1.4.4-all/Foundation/include -I/common/poco-1.4.4-all/XML/include -I/common/poco-1.4.4-all/Util/include -I/common/poco-1.4.4-all/Net/include -I/common/poco-1.4.4-all/Crypto/include -I/common/poco-1.4.4-all/NetSSL_OpenSSL/include -I/common/poco-1.4.4-all/Data/include -I/common/poco-1.4.4-all/Data/SQLite/include -I/common/poco-1.4.4-all/Data/ODBC/include -I/common/poco-1.4.4-all/Data/MySQL/include -I/common/poco-1.4.4-all/Zip/include -I/common/poco-1.4.4-all/PageCompiler/include -I/common/poco-1.4.4-all/PageCompiler/File2Page/include -mthumb -fpic -ffunction-sections -funwind-tables -fstack-protector -fno-strict-aliasing -finline-limit=64 -frtti -fexceptions -DPOCO_BUILD_HOST=unknown14109fcff0b7 -DPOCO_ANDROID -DPOCO_NO_FPENVIRONMENT -DPOCO_NO_WSTRING -DPOCO_NO_SHAREDMEMORY -g -D_DEBUG -c src/ASCIIEncoding.cpp -o /common/poco-1.4.4-all/Foundation/obj/Android/armeabi/debug_static/ASCIIEncoding.o
In file included from include/Poco/Foundation.h:145:0,
from include/Poco/AsyncChannel.h:43,
from src/AsyncChannel.cpp:37:
include/Poco/Bugcheck.h:44:18: fatal error: string: No such file or directoryIn file included from include/Poco/Foundation.h:145:0,
Could anyone help me out on this?
I can confirm arm-linux-androideabi-g++ is the one in my custom toolchain's bin folder.