编译用 C++ 编写的 DLL 项目

编译用 C++ 编写的 DLL 项目

我是 Linux 新手,但我尝试过使用 Ubuntu 进行基本操作,我非常喜欢它。我想探索从 Windows 切换的可能性。但是,目前我正在使用 Microsoft Visual Studio 开发用 C++ 编写的 DLL。该 DLL 将与 Windows 中的软件一起使用(没有 Linux 对应版本)。

有没有一种简单的方法可以从 Ubuntu 上做到这一点?如果有,怎么做?有些人提到了 Mingw 交叉编译器,但我想知道这是不是最好的选择,或者是否还有更多的选择。

谢谢

答案1

这是Mingw解决方案:
http://www.mingw.org/wiki/sampleDLL
源文件:

#include <stdio.h>
#include "example_dll.h"

__stdcall void hello(const char *s)
{
        printf("Hello %s\n", s);
}
int Double(int x)
{
        return 2 * x;
}
void CppFunc(void)
{
        puts("CppFunc");
}
void MyClass::func(void)
{
        puts("MyClass.func()");
}

头文件:

#ifndef EXAMPLE_DLL_H
#define EXAMPLE_DLL_H

#ifdef __cplusplus
extern "C" {
#endif

#ifdef BUILDING_EXAMPLE_DLL
#define EXAMPLE_DLL __declspec(dllexport)
#else
#define EXAMPLE_DLL __declspec(dllimport)
#endif

void __stdcall EXAMPLE_DLL hello(const char *s);

int EXAMPLE_DLL Double(int x);

#ifdef __cplusplus
}
#endif

// NOTE: this function is not declared extern "C"
void EXAMPLE_DLL CppFunc(void);

// NOTE: this class must not be declared extern "C"
class EXAMPLE_DLL MyClass
{
public:
        MyClass() {};
        virtual ~MyClass() {};
        void func(void);
};

#endif  // EXAMPLE_DLL_H

建筑:

g++ -c -DBUILDING_EXAMPLE_DLL example_dll.cpp
g++ -shared -o example_dll.dll example_dll.o -Wl,--out-implib,libexample_dll.a

相关内容