I would like to write a "portable" C++ library in Clang. "Portable" means that I detect (in C preprocessor) what C++ features are available in the compilation environment and use these features or provide my workarounds. This is similar to what Boost libraries are doing.
However, the presence of some features depends not on the language, but on the Standard Library implementation. In particular I am interested in:
- type traits (which of them are available and with what spelling)
- if
initializer_list
beingconstexpr
.
I find this problematic because Clang by default does not use its own Standard Library implementation: it uses libstdc++. While Clang has predefined preprocessor macros __GNUC__
, __GNUC_MINOR__
, __GNUC_PATCHLEVEL__
, they are hardcoded to values 4, 2, 1 respectively, and they tell me little about the available libstdc++ features.
How can I check in Clang preprocessor what version of libstdc++ it is using?
Clang does come with its own standard library implementation, it's called libc++. You can use it by adding
-stdlib=libc++
to your compile command.That being said, there are various ways to check Clang/libstdc++ C++ support:
__has_feature
macro (and friends) that can be used to detect language features and language extenstions.And also, this took me 2 minutes of googling.