-
使用lldb 进行debug时,无法解析字符串
error: summary string parsing error
需要在
CMakeLists.txt
中添加:set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fstandalone-debug")
-
Ubuntu20.04使用clang-13编译ceph(quincy)时,出现了找不到C++20头文件的情况
ceph/src/include/denc.h:30:10: fatal error: 'concepts' file not found #include <concepts>
参考这里
问题解决:sudo apt install g++-10
。