clangはヘッダーを見つけることができませんが、gccは見つけられます

clangはヘッダーを見つけることができませんが、gccは見つけられます

ubuntu 22.04 を使用すると、g++ は問題なくテスト プログラムをコンパイルできます。一方、clang++ は失敗します...

main.cpp:1:10: fatal error: 'iostream' file not found
#include <iostream>
         ^~~~~~~~~~
1 error generated.
#include <iostream>
using namespace std;
int main(int argc, char** argv) {
  cout << "hello world" << endl;
  return 0;
}

gcc で問題なくコンパイルされる cmake/c++ プロジェクトもありますが、clang を使用するように再構成すると、cmake から次の出力が得られます。

~/C/vkf % cmc && cmake ./ -DCMAKE_BUILD_TYPE=Release -G "Ninja" && ninja
-- The C compiler identification is Clang 14.0.0
-- The CXX compiler identification is Clang 14.0.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/clang - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - failed
-- Check for working CXX compiler: /usr/bin/clang++
-- Check for working CXX compiler: /usr/bin/clang++ - broken
CMake Error at /usr/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake:62 (message):
  The C++ compiler

    "/usr/bin/clang++"

  is not able to compile a simple test program.

  It fails with the following output:

    Change Dir: /home/david/C/vkf/CMakeFiles/CMakeTmp
    
    Run Build Command(s):/usr/bin/ninja cmTC_ef4ce && [1/2] Building CXX object CMakeFiles/cmTC_ef4ce.dir/testCXXCompiler.cxx.o
    [2/2] Linking CXX executable cmTC_ef4ce
    FAILED: cmTC_ef4ce 
    : && /usr/bin/clang++   CMakeFiles/cmTC_ef4ce.dir/testCXXCompiler.cxx.o -o cmTC_ef4ce   && :
    /usr/bin/ld: cannot find -lstdc++: No such file or directory
    clang: error: linker command failed with exit code 1 (use -v to see invocation)
    ninja: build stopped: subcommand failed.
    
    

  

  CMake will not be able to correctly generate this project.
Call Stack (most recent call first):
  CMakeLists.txt:11 (project)


-- Configuring incomplete, errors occurred!
See also "/home/david/C/vkf/CMakeFiles/CMakeOutput.log".
See also "/home/david/C/vkf/CMakeFiles/CMakeError.log".

私のCMakeError.log

/usr/bin/ld: cannot find -lstdc++: No such file or directory

以前は両方とも問題なく動作していたので、システム構成に何か変更があったに違いありません。修正方法をご存知の方はいらっしゃいますか?

答え1

削除してみてくださいcpp-12パッケージまたはインストールlibstdc++-12-dev

答え2

libc++abi-dev をインストールすることで、非常によく似た問題を解決しました。

sudo apt install libc++abi-dev

関連情報