gpt4 book ai didi

c - 如何通过 CompilerType #ifdef ?海湾合作委员会或 VC++

转载 作者:太空狗 更新时间:2023-10-29 16:34:29 25 4
gpt4 key购买 nike

我使用 #ifdef Win32 进行安全调用,例如 sprintf_s 但现在我想使用 MinGW 构建项目,但现在是错误的。我需要使用 #ifdef VC++ 或类似的方式。可能吗?

最佳答案

#ifdef __clang__
/*code specific to clang compiler*/
#elif __GNUC__
/*code for GNU C compiler */
#elif _MSC_VER
/*usually has the version number in _MSC_VER*/
/*code specific to MSVC compiler*/
#elif __BORLANDC__
/*code specific to borland compilers*/
#elif __MINGW32__
/*code specific to mingw compilers*/
#endif

关于c - 如何通过 CompilerType #ifdef ?海湾合作委员会或 VC++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15127522/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com