zoukankan      html  css  js  c++  java
  • 预定义宏__GNUC__和_MSC_VER

     http://www.cnblogs.com/whiteyun/archive/2010/09/05/1818491.html

    一、预定义__GNUC__宏

        1 __GNUC__ 是gcc编译器编译代码时预定义的一个宏。需要针对gcc编写代码时, 可以使用该宏进行条件编译。

        2 __GNUC__ 的值表示gcc的版本。需要针对gcc特定版本编写代码时,也可以使用该宏进行条件编译。

        3 __GNUC__ 的类型是“int”,该宏被扩展后, 得到的是整数字面值。可以通过仅预处理,查看宏扩展后的文本。

    示例:

      #include <assert.h>

      #include <stdio.h>

      #include <typeinfo>
      #ifndef __GNUC__

        #error sample for gcc compiler

      #else

        /* use gcc special extension: #warning , __attribute__, etc.  */

      #endif

      int main() 

      {    

        printf("hello gcc %d ",__GNUC__);    

        assert( typeid(__GNUC__)==typeid(int) );    

        printf("press Enter to exit ");    

        (void)getchar();

      }


    二、预定义_MSC_VER宏

        1 _MSC_VER是微软C/C++编译器——cl.exe编译代码时预定义的一个宏。需要针对cl编写代码时, 可以使用该宏进行条件编译。

        2 _MSC_VER的值表示cl的版本。需要针对cl特定版本编写代码时, 也可以使用该宏进行条件编译。

        3 _MSC_VER的类型是"int"。该宏被扩展后,得到的是整数字面值。可以通过仅预处理, 查看宏扩展后的文本。

    示例:

      /* _MSC_VER\_MSC_VER.cpp */

      #include <stdio.h>

       #include <stdlib.h>

       #include <typeinfo>

       #define TO_LITERAL(text) TO_LITERAL_(text)

       #define TO_LITERAL_(text) #text

       #ifndef _MSC_VER

         #error sample for msvc compiler

      #else

        /* use msvc special extension: #pragma message,__declspec,__stdcall,etc. */

        #pragma message("---------------------------------------- ")

        #pragma message("---------------------------------------- ")

        #pragma message("---------- hello msvc " TO_LITERAL(_MSC_VER) " -------------")

        #pragma message(" ---------------------------------------- ")

        #pragma message("---------------------------------------- ")

        extern __declspec(dllimport) void __stdcall declare_but_dont_reference(void);

       #endif
        

      int main()

      {    

        printf("hello msvc, version=%d ",_MSC_VER);    

        printf("typeof _MSC_VER="%s" ",typeid(_MSC_VER).name());    

        system("pause"); /* msvc only on windows? */    

        return 0;

      }

  • 相关阅读:
    Cmake编译SDL2
    glog的使用
    win32下编译glog
    快速阅读《QT5.9 c++开发指南》1
    applyColorMap()研究(如果我对现有的colormap不满意,那么如何具体来做)
    如何判断轮廓是否为圆
    libopencv_shape.so.3.0: cannot open shared object file: No such file or directory 解决笔记
    OpenCV和RTSP的综合研究
    识别复杂的答题卡1(主要算法)
    识别简单的答题卡(Bubble sheet multiple choice scanner and test grader using OMR, Python and OpenCV——jsxyhelu重新整编)
  • 原文地址:https://www.cnblogs.com/davytitan/p/4459177.html
Copyright © 2011-2022 走看看