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
On Fedora 35 Workstation (x86_64), the build fails as follows:
% cmake --build . [ 12%] Building CXX object CMakeFiles/FileCheck.dir/Unity/unity_0_cxx.cxx.o [ 25%] Linking CXX executable FileCheck [ 25%] Built target FileCheck [ 37%] Building CXX object CMakeFiles/cx.dir/cmake_pch.hxx.gch [ 50%] Building CXX object CMakeFiles/cx.dir/Unity/unity_3_cxx.cxx.o [ 62%] Building CXX object CMakeFiles/cx.dir/Unity/unity_2_cxx.cxx.o [ 75%] Building CXX object CMakeFiles/cx.dir/Unity/unity_1_cxx.cxx.o [ 87%] Building CXX object CMakeFiles/cx.dir/Unity/unity_0_cxx.cxx.o [100%] Linking CXX executable cx /usr/bin/ld: cannot find -lclangAST /usr/bin/ld: cannot find -lclangBasic /usr/bin/ld: cannot find -lclangFrontend /usr/bin/ld: cannot find -lclangLex /usr/bin/ld: cannot find -lclangParse /usr/bin/ld: cannot find -lclangSema collect2: error: ld returned 1 exit status gmake[2]: *** [CMakeFiles/cx.dir/build.make:170: cx] Error 1 gmake[1]: *** [CMakeFiles/Makefile2:304: CMakeFiles/cx.dir/all] Error 2 gmake: *** [Makefile:101: all] Error 2 cmake --build .: 45.30s user, 2.89s kernel, 1253M memory %
The build succeeded with this patch to CMakeLists.txt:
CMakeLists.txt
diff --git a/CMakeLists.txt b/CMakeLists.txt index c50b6b4d..a62983aa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -71,7 +71,8 @@ if (LLVM_LINK_LLVM_DYLIB) else() llvm_map_components_to_libnames(LLVM_LIBS core native linker support) endif() -list(APPEND LLVM_LIBS clangAST clangBasic clangFrontend clangLex clangParse clangSema) +# list(APPEND LLVM_LIBS clangAST clangBasic clangFrontend clangLex clangParse clangSema) +list(APPEND LLVM_LIBS clang-cpp) target_link_libraries(cx ${LLVM_LIBS}) add_custom_target(check_lit COMMAND lit --verbose --succinct --incremental ${EXTRA_LIT_FLAGS} ${PROJECT_SOURCE_DIR}/test
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On Fedora 35 Workstation (x86_64), the build fails as follows:
The build succeeded with this patch to
CMakeLists.txt
:The text was updated successfully, but these errors were encountered: