Dear Visual Studio experts,
are you aware of an online compiling tool where I could test some #ifdef
magic aimed at supporting various MSVC toolkits? (ideally from v90 to v14x included...) ? I'd like to avoid the hassle of setting up a VM, installing tools...
I just need to test a simple TU with some static tests. Compiling is enough, I do not need to link or execute (barring code generation bugs).
I know about _MSC_VER
, _MSC_FULL_VER
, __cplusplus
, _MSVC_LANG
and /Zc
, but I'd like to test my feature flag detection
before pushing my changes into the wild (it's indeed quite scary looking, when taking into account GCC and clang support, and I might want to add support for other compilers in the near future)
I already know about Compiler Explorer but it only goes as far as v140, and I am precisely concerned by the v90/v100 era.
Thanks in advance!