欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

WIndows/Linux 跨平台编译

程序员文章站 2023-12-28 13:42:10
...

动态库

参考 Qt 的写法,我们很容易得到以下写法:

#ifndef DECL_EXPORT_AMD_DECL_IMPORT
#define DECL_EXPORT_AMD_DECL_IMPORT

#ifdef _WIN32
    #define DECL_EXPORT __declspec(dllexport)
    #define DECL_IMPORT __declspec(dllimport)
#else
    #define DECL_EXPORT
    #define DECL_IMPORT
#endif

#endif


#if defined(__DLL_LIBRARY)
    #define  RESULTSDISPLAY_EXPORT DECL_EXPORT
#else
    #define RESULTSDISPLAY_EXPORT DECL_IMPORT
#endif


class RESULTSDISPLAY_EXPORT TestClass{
    //...
}

条件编译常用宏

跨平台编译常用的宏有:

  • WIN32
    该宏定义在 minwindef.h 中,这意味着如果你需要使用它,那么你得包含 Windows API 头文件:
// Win32 defines _WIN32 automatically,
// but Macintosh doesn't, so if we are using
// Win32 Functions, we must do it here

#ifndef WIN32
#define WIN32
#endif
  • _WIN32 & _WIN64
    _WIN32 定义的初衷是为了区分 16 位和 32 位程序,但是目前很多项目的代码都是使用 _WIN32 来判定是否是 windows 平台,所以目前在 windows 平台下编译 32 位和 64 位程序时,编译器都会预定义了 _WIN32

一般32位编译器只定义 _WIN32,64位程序会定义 _WIN32_WIN64

如果你仅需在 WindowsLinux 平台做兼容,则仅需判断是否为Windows环境即可:

#ifdef _WIN32
    // Windows
#else
    // Other 
#endif

上一篇:

下一篇: