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
/usr/bin/ld: CMakeFiles/codebrowser_generator.dir/main.cpp.o: undefined reference to symbol '_ZN5clang22PCHContainerOperationsC1Ev' /usr/bin/ld: /usr/lib/../lib/libclangSerialization.so.8: error adding symbols: DSO missing from command line collect2: error: ld returned 1 exit status make[2]: *** [generator/CMakeFiles/codebrowser_generator.dir/build.make:212: generator/codebrowser_generator] Error 1 make[1]: *** [CMakeFiles/Makefile2:157: generator/CMakeFiles/codebrowser_generator.dir/all] Error 2
not sure if this was related to earlier clang issues.
The text was updated successfully, but these errors were encountered:
it can be fixed by adding "clangSerialization" to file "generator/CMakeLists.txt".
like this:
--- a/generator/CMakeLists.txt +++ b/generator/CMakeLists.txt @@ -20,6 +20,7 @@ target_link_libraries(codebrowser_generator PRIVATE clangBasic clangLex clangTooling + clangSerialization )
Sorry, something went wrong.
Thanks, was fixed with 25cdb43
ogoffart
No branches or pull requests
/usr/bin/ld: CMakeFiles/codebrowser_generator.dir/main.cpp.o: undefined reference to symbol '_ZN5clang22PCHContainerOperationsC1Ev'
/usr/bin/ld: /usr/lib/../lib/libclangSerialization.so.8: error adding symbols: DSO missing from command line
collect2: error: ld returned 1 exit status
make[2]: *** [generator/CMakeFiles/codebrowser_generator.dir/build.make:212: generator/codebrowser_generator] Error 1
make[1]: *** [CMakeFiles/Makefile2:157: generator/CMakeFiles/codebrowser_generator.dir/all] Error 2
not sure if this was related to earlier clang issues.
The text was updated successfully, but these errors were encountered: