error: cannot find -lc++ qt 5.12 android
Solved
Mobile and Embedded
-
@trousev said in error: cannot find -lc++ qt 5.12 android:
You also can write this into your own qmake file, not into system one. To be precise, just add into your project's .pro the following:
QMAKE_LINK += -nostdlib++
and that's it
Worked for me!
-
FYI If this is https://bugreports.qt.io/browse/QTBUG-70631, it's claimed to be fixed with 5.12.5 and 5.13.0
-
@Albertino thanks it worked
-
@AriosJentu I had the same problem, how did you solve it