gpt4 book ai didi

c - 使用 mingw32 在 Windows 上构建 glew 时 `DllMainCRTStartup@12' 的多个定义

转载 作者:可可西里 更新时间:2023-11-01 13:54:31 26 4
gpt4 key购买 nike

我关注了这个主题:Building glew on windows with mingw但这里出了点问题:

gcc -shared -Wl,-soname,libglew32.dll -Wl,--out-implib,lib/libglew32.dll.a -o lib/glew32.dll src/glew.o -L/mingw/lib - lglu32 -lopengl32 -lgdi32 -luser32 -lkernel32

我收到这个错误:

C:\MinGW\dev_lib\glew-2.0.0>gcc -shared -Wl,-soname,libglew32.dll -Wl,--out-implib,lib/libglew32.dll.a -o lib/glew32。 dll src/glew.o -L/mingw/lib -lglu32 -lopengl32 -lgdi32 -luser32 -lkernel32src/glew.o:glew.c:(.text+0x28f80): `DllMainCRTStartup@12' 的多重定义c:/mingw/bin/../lib/gcc/mingw32/4.9.3/../../../dllcrt2.o:(.text+0x60): 首先在这里定义collect2.exe:错误:ld 返回了 1 个退出状态

感谢您的帮助。

最佳答案

您需要像这样使用 -nostdlib 选项进行链接:

gcc -nostdlib -shared -Wl,-soname,libglew32.dll -Wl,--out-implib,lib/libglew32.dll.a    -o lib/glew32.dll src/glew.o -L/mingw/lib -lglu32 -lopengl32 -lgdi32 -luser32 -lkernel32

Glew 定义了 CRT 中也定义的 DllMainCRTStartup。因此你的问题。

关于c - 使用 mingw32 在 Windows 上构建 glew 时 `DllMainCRTStartup@12' 的多个定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38673228/

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