Closed jdoubleu closed 1 year ago
The image is missing libc++.
libc++
Although it comes with libstdc++, which is a requirement of clang, I would expect a clang/llvm image to also include libc++.
libstdc++
clang
You can simply install it with (as per https://apt.llvm.org/):
apt-get install libc++-{version}-dev libc++abi-{version}-dev
I think clang will still pick libstdc++ by default, unless otherwise specified (i.e. -stdlib=libc++), so I see no real argument against it. What do you think?
-stdlib=libc++
thanks!
Thanks for the report! I have included it. Images should be available shortly.
The image is missing
libc++
.Although it comes with
libstdc++
, which is a requirement ofclang
, I would expect a clang/llvm image to also includelibc++
.You can simply install it with (as per https://apt.llvm.org/):
I think clang will still pick
libstdc++
by default, unless otherwise specified (i.e.-stdlib=libc++
), so I see no real argument against it. What do you think?