Details
Description
-wundef results in a warning as _MSC_VER is not defined under rcX and is directly checked via #if _MSC_VER. Using also -werror which turns all warnings into errors, compilation is not possible.
Known Workarounds:
- Don't use -wundef / -werror
- manually add #ifdef _MSC_VER guard