error in building from source
-
I'm building qt5.14.2 for android from source.
(i need a static kit for compile a shared library statically)
I faced error in building and I didn't find a reason for this error:The content of the file that contains error :
What's wrong with that?
I'm using NDK 21.3.6528147 (i faced more errors with previous versions of NDK) and c++17 (configure chose c++17 itself)
configure arguments:
./configure -xplatform android-clang --disable-rpath -nomake tests -nomake examples -android-ndk /home/mmjvox/AndroidSDKlinux/ndk-bundle -android-sdk /home/mmjvox/AndroidSDKlinux -no-warnings-are-errors -static -release -opensource -confirm-license -skip qttranslations -prefix /opt/qt_5142_static_android -nomake tools
-
I'm building qt5.14.2 for android from source.
(i need a static kit for compile a shared library statically)
I faced error in building and I didn't find a reason for this error:The content of the file that contains error :
What's wrong with that?
I'm using NDK 21.3.6528147 (i faced more errors with previous versions of NDK) and c++17 (configure chose c++17 itself)
configure arguments:
./configure -xplatform android-clang --disable-rpath -nomake tests -nomake examples -android-ndk /home/mmjvox/AndroidSDKlinux/ndk-bundle -android-sdk /home/mmjvox/AndroidSDKlinux -no-warnings-are-errors -static -release -opensource -confirm-license -skip qttranslations -prefix /opt/qt_5142_static_android -nomake tools
@mmjvox said in error in building from source:
What's wrong with that?
That's not valid c++ syntax. How did you obtain this file, and have you made any changes to it? It does seem odd to me that an autogenerated file'd contain that sort of blatant error.
-
@kshegunov said in error in building from source:
That's not valid c++ syntax. How did you obtain this file, and have you made any changes to it? It does seem odd to me that an autogenerated file'd contain that sort of blatant error.
No i didn't change anything in source files or auto generated files. i just ran configure with that arguments and make.
This file didn't already exist before running make.
I noticed a point
in .pro file that exists in this directory ' TARGETPATH ' defined ' QtQml/WorkerScript.2 '
but in repo on github ' TARGETPATH ' defined ' QtQml/WorkerScript '
I think the problem was fixed in newer versions
-
@kshegunov said in error in building from source:
That's not valid c++ syntax. How did you obtain this file, and have you made any changes to it? It does seem odd to me that an autogenerated file'd contain that sort of blatant error.
No i didn't change anything in source files or auto generated files. i just ran configure with that arguments and make.
This file didn't already exist before running make.
I noticed a point
in .pro file that exists in this directory ' TARGETPATH ' defined ' QtQml/WorkerScript.2 '
but in repo on github ' TARGETPATH ' defined ' QtQml/WorkerScript '
I think the problem was fixed in newer versions