D8048: cannot compile C file 'openssl\applink.c' with /ZW option

后端 未结 1 1597
天涯浪人
天涯浪人 2021-02-14 23:19

I am trying to use OpenSSL in my metro application. I created a C++ WinRTComponent and have openssl files under this component

However, when I try to compile the project

相关标签:
1条回答
  • 2021-02-14 23:46

    The error message is exactly what it says it is - VC++ does not support C++/CX extensions - enabled with /ZW compiler switch - in files compiled as C (which kinda makes sense, since those extensions are object-oriented).

    The reason why you're seeing this is that, by default, all files in a Metro C++ project are compiled with /ZW. Unfortunately, this also applies to .c files, even though it doesn't actually work for them. What you need is to disable the extensions selectively for those files. You can do so via right-click -> Properties on a file or a selection of files in Solution Explorer. In the Property Pages dialog, navigate to C/C++ -> General, and look for "Enable Windows Run Time Extensions".

    0 讨论(0)
提交回复
热议问题