mardi 17 mars 2020

Converting strings to std::__ndk1 instead of std::__1 which compiling POCO with NDK r20b

I'm compiling poco for android with NDK-r20b where the strings are converting to std::__ndk1 intead of std::__1. My android build aws server requires it to be built with std::__1. Is there any way if I can build it with std::__1.

Current Build is:

0000000000000000 DF UND 0000000000000000 Poco::URI::URI(Poco::URI const&)
0000000000000000 DF UND 0000000000000000 Poco::URI::URI()
0000000000000000 DF UND 0000000000000000 Poco::URI::URI(std::__ndk1::basic_string<char, std::__ndk1::char_traits, std::__ndk1::allocator > const&)

Expected Build:

0000000000000000 DF UND 0000000000000000 Poco::URI::URI(Poco::URI const&)
0000000000000000 DF UND 0000000000000000 Poco::URI::URI()
0000000000000000 DF UND 0000000000000000 Poco::URI::URI(std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator > const&)

Can anyone please help if how can I achieve it?

Aucun commentaire:

Enregistrer un commentaire