This seems to be an issue that arises when a higher version of gcc
is present on your system than of g++
; clang++
detects and chooses the highest version of gcc (in your case, gcc-12
) and then fails to link g++ programs because the /usr/lib/gcc/x86_64-linux-gnu/12/
directory lacks the corresponding C++ standard libraries.
The issue is also reported in After updating GCC, Clang can't find libstdc++ anymore. I can reproduce the error myself on 22.04 where
$ apt policy gcc g++
gcc:
Installed: 4:11.2.0-1ubuntu1
Candidate: 4:11.2.0-1ubuntu1
Version table:
*** 4:11.2.0-1ubuntu1 500
500 http://archive.ubuntu.com/ubuntu jammy/main amd64 Packages
100 /var/lib/dpkg/status
g++:
Installed: 4:11.2.0-1ubuntu1
Candidate: 4:11.2.0-1ubuntu1
Version table:
*** 4:11.2.0-1ubuntu1 500
500 http://archive.ubuntu.com/ubuntu jammy/main amd64 Packages
100 /var/lib/dpkg/status
but gcc-12
is present apparently as a dependency of the dkms
package:
$ aptitude why gcc-12
i dkms Depends gcc-12
(perhaps because the current kernel was built with gcc-12?). So clang++
detects and prefers it:
$ clang++ -v -o hello hello.cpp 2>&1 | grep ^Found
Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/10
Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/11
Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/12
I'm not sure the best solution; more recent versions of clang provide a --gcc-install-dir option but that is not present in clang-14. One option that appears to work is to pass the gcc-11 library path as a linker option:
clang++ -Wl,-L/usr/lib/gcc/x86_64-linux-gnu/11 -o hello hello.cpp
(or equivalently by exporting LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/11
in your build environment). I'm slightly hesitant to recommend it in case that introduces inconsistencies between header files and libraries. I guess another option is to manually install g++-12
on your system.