Linux 和 Windows 链接器的区别

发布于 2024-11-02 07:38:36 字数 240 浏览 1 评论 0原文

不同操作系统上的链接有什么区别?

例如,以下代码在 Windows 上产生链接器错误(使用 Vs2010 和 gcc 编译),但在 Linux(Ubuntu、gcc)上编译成功:

extern int foo

int main() {
    foo=1;
}

Gcc 命令:

gcc -shared filename.cpp

What is the difference in linking on various operating system?

For example the following code produces a linker error on Windows (compiled both with Vs2010 and gcc), but compiles successfully on Linux (Ubuntu,gcc):

extern int foo

int main() {
    foo=1;
}

Gcc command:

gcc -shared filename.cpp

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空名 2024-11-09 07:38:36

如果您尝试将其编译为 Windows 共享库,则需要类似的内容(从维基百科窃取的代码!):-

#include <windows.h>


// DLL entry function (called on load, unload, ...)
BOOL APIENTRY DllMain(HANDLE hModule, DWORD dwReason, LPVOID lpReserved)
{
    return TRUE;
}

// Exported function - adds two numbers
extern "C" __declspec(dllexport) double AddNumbers(double a, double b)
{
    return a + b;
}

Windows 共享模块(DLL)需要 DllMain 入口点(第一次加载模块时执行)并且函数名称需要在它们可以被另一个程序使用之前通过 declspec gobledygook 导出。

If you are trying to compile it as a windows shared library you need something like (code stolen from Wikipedia!) :-

#include <windows.h>


// DLL entry function (called on load, unload, ...)
BOOL APIENTRY DllMain(HANDLE hModule, DWORD dwReason, LPVOID lpReserved)
{
    return TRUE;
}

// Exported function - adds two numbers
extern "C" __declspec(dllexport) double AddNumbers(double a, double b)
{
    return a + b;
}

Windows shared modules (DLLs) require a DllMain entry point (executed the first time the module is loaded) and function names need to be exported via the declspec gobledygook before they can be used by another program.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文