g++ -D_WIN32 -D_MINGW -lgdi32 -lgdiplus --6ren">
gpt4 book ai didi

c++ - "multiple definition of ` 与 DLL 链接时 atexit '"

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:12:18 24 4
gpt4 key购买 nike

我更具体地使用 MinGW32 TDM-GCC-32。我有一个非常简单的项目,我链接到一个自定义库,但弹出此错误:

>g++ -D_WIN32 -D_MINGW -lgdi32 -lgdiplus -Linterception/x86 -linterception main.cpp -o interceptor.exe

interception/x86/libinterception.a(dgnes00125.o):(.text+0x0): multiple definitio
n of `atexit'
C:/TDM-GCC-32/bin/../lib/gcc/mingw32/5.1.0/../../../crt2.o:crt1.c:(.text+0x2c0):
first defined here
interception/x86/libinterception.a(dgnes00109.o):(.text+0x0): multiple definitio
n of `_onexit'
C:/TDM-GCC-32/bin/../lib/gcc/mingw32/5.1.0/../../../crt2.o:crt1.c:(.text+0x2d0):
first defined here
C:/TDM-GCC-32/bin/../lib/gcc/mingw32/5.1.0/../../../../mingw32/bin/ld.exe: C:/TD
M-GCC-32/bin/../lib/gcc/mingw32/5.1.0/../../../crt2.o: bad reloc address 0x20 in
section `.eh_frame'
collect2.exe: error: ld returned 1 exit status

我用来构建库的命令:

gcc -DINTERCEPTION_EXPORT -D_WIN32 -D_MINGW -shared -o interception.dll interception.c
dlltool -z interception.def --export-all-symbol interception.dll
dlltool -d interception.def -l libinterception.a

我想我必须使用不同的选项来编译库以避免重新定义..

最佳答案

我认为 dlltool 方法目前已被弃用。不过,我不能在这里责怪你,因为大多数可用文档仍然说要这样做。

Gcc 将直接链接到 .dll 文件,使 .a 文件过时(至少在处理 dll 时是这样——这是目前使用 的唯一原因。 a 文件用于静态链接)。您甚至不必使用 -l 标志指定 dll,但如果 dll 不在当前目录中则必须指定它的路径

C:\Users\burito>gcc main.o opengl32.dll -o main.exe
gcc: error: opengl32.dll: No such file or directory

C:\Users\burito>gcc main.o c:\Windows\system32\opengl32.dll -o main.exe

C:\Users\burito>

好吧,opengl32.dll 可能不是一个很好的例子,但我希望我已经给了你大致的想法。

相信 MSVC 仍然需要它的.lib 文件来使用.dll,如果图书馆没有。

在您的特定情况下,应该起作用的命令是...

g++ -D_WIN32 -D_MINGW -lgdi32 -lgdiplus interception/x86/interception.dll main.cpp -o interceptor.exe

如果出于某种原因你真的需要从 .dll 创建一个 .a 文件,对我有用的命令是......

gendef interception.dll
dlltool -l interception.a -d interception.def -k -A

由于您链接的存储库在其版本中确实提供了 .dll 文件,因此您不必自己构建它们

关于c++ - "multiple definition of ` 与 DLL 链接时 atexit '",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39215742/

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