I have installed libc++ in linux and noted that I had to pass the definition -DCRYPTOPP_DISABLE_UNCAUGHT_EXCEPTION or it segfaults. This is fair enough, but in RSA tests including cryptest.exe v it seems to hang, I have not seen it pass this yet.
I wonder if anyone else has this setup or has an idea what the issue would be.
~/Devel/cryptopp/trunk/c5 $ clang --version
clang version 3.2 (trunk 155751)
Target: x86_64-unknown-linux-gnu
Thread model: posix
CXXFLAGS += -DCRYPTOPP_DISABLE_UNCAUGHT_EXCEPTION -DCRYPTOPP_DISABLE_ASM -stdlib=libc++ -std=c++11 -Wno-tautological-compare -DCRYPTOPP_DISABLE_SSE2 -DCRYPTOPP_DISABLE_SSSE3
(if using clang++ for c++11 development you need libraries to be recompiled against libc++ and this is the reason for the std=c++11 and stdlib statements)
Thanks
David