Qt 6.11 is out! See what's new in the release
blog
STL on android
Mobile and Embedded
2
Posts
1
Posters
2.5k
Views
1
Watching
-
Hi,
I'm trying to compile a Qt project for adroid against a library that uses STL. Linking fails due to STL symbols not being found. Googling around I found that this could be overcome by defining following in Android.mk:
APP_STL := stlport_static
APP_CPPFLAGS += -fexceptionsIs there some way replicate this using qt and qmake?