We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When trying to build the test project using the latest Android Studio 2.3.3, the StockfishService sub project compilation fails with the:
StockfishServiceTest/stockfishservice/.externalNativeBuild/cmake/debug/arm64-v8a/CMakeFiles/feature_tests.cxx Error:(405) multiple definition of main' StockfishServiceTest/stockfishservice/.externalNativeBuild/cmake/debug/armeabi-v7a/CMakeFiles/feature_tests.c Error:(34) multiple definition of main' StockfishServiceTest/stockfishservice/.externalNativeBuild/cmake/debug/armeabi-v7a/CMakeFiles/feature_tests.cxx Error:(405) multiple definition of main' StockfishServiceTest/stockfishservice/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/feature_tests.cxx Error:(405) multiple definition of main'
main' StockfishServiceTest/stockfishservice/.externalNativeBuild/cmake/debug/armeabi-v7a/CMakeFiles/feature_tests.c Error:(34) multiple definition of
main' StockfishServiceTest/stockfishservice/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/feature_tests.cxx Error:(405) multiple definition of
seems like there are plenty of feature_tests.cxx files generated for various architectures, and they clash with each other. how can this be solved?
CMakeLists.txt includes
file(GLOB_RECURSE engine_SRCS ./*.c*)
which may be the reason why all these files are collected recursively.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When trying to build the test project using the latest Android Studio 2.3.3, the StockfishService sub project compilation fails with the:
seems like there are plenty of feature_tests.cxx files generated for various architectures, and they clash with each other. how can this be solved?
CMakeLists.txt includes
which may be the reason why all these files are collected recursively.
The text was updated successfully, but these errors were encountered: