windows MinGW和GLUT未定义对“_imp____glutInitWithExit@12”的引用

iih3973s  于 2023-02-16  发布在  Windows
关注(0)|答案(2)|浏览(247)

我涉猎Python一年了,现在开始学习c++,所以我是个新手。我安装了MinGW,一切都很好,直到我安装了freeglut。当我运行下面的代码:

  1. #include <gl/glut.h>
  2. int main()
  3. {
  4. return 0;
  5. }

使用:

  1. C:\code\cpp>g++ GLtest1.cpp

我得到这个:

  1. C:\Users\User\AppData\Local\Temp\ccABWOyv.o:GLtest1.cpp:(.text+0x1c): undefined
  2. reference to `_imp____glutInitWithExit@12'
  3. C:\Users\User\AppData\Local\Temp\ccABWOyv.o:GLtest1.cpp:(.text+0x3e): undefined
  4. reference to `_imp____glutCreateWindowWithExit@8'
  5. C:\Users\User\AppData\Local\Temp\ccABWOyv.o:GLtest1.cpp:(.text+0x60): undefined
  6. reference to `_imp____glutCreateMenuWithExit@8'
  7. c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: C:\Users\U
  8. ser\AppData\Local\Temp\ccABWOyv.o: bad reloc address 0x20 in section `.eh_frame'
  9. c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: final link
  10. failed: Invalid operation
  11. collect2.exe: error: ld returned 1 exit status

我安装并重新安装了MinGW几次试图补救这个问题,但无济于事。

  1. #include <windows.h>

我也试着安装了64位的. dll文件--什么都没有。如果有人以前有过这样的经历,或者熟悉我的问题,欢迎一些帮助。谢谢。我想我需要做一些关于"链接"的事情,但是我真的不明白为什么"glut.h"应该与"gl.h"或"glu.h"有任何不同。太令人沮丧了!

    • 更新日期:**

我试着把一些事情联系起来。首先我这样做:

  1. C:\code\cpp>g++ -c -o GLtest1.exe GLtest1.cpp -I"C:\MinGW\include"

结果很好。没有错误。然后我试着把周围的东西联系起来,结果出现了一个错误:

  1. C:\code\cpp>g++ -o GLtest1.exe -L"C:\MinGW\lib" -lglut32 -opengl32
  2. c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot fin
  3. d -lglut32
  4. collect2.exe: error: ld returned 1 exit status

这里有什么想法吗?glut32.dll在System32和SysWOW64中都存在

c7rzv4ha

c7rzv4ha1#

你需要链接到过剩二进制:

  1. g++ GLtest1.cpp -lglut32
kokeuurv

kokeuurv2#

我的例子:我把lib文件和bin文件从64位切换到32位。而且成功了。

相关问题