gpt4 book ai didi

c++ - 使用 freeglut 编译问题

转载 作者:太空狗 更新时间:2023-10-29 23:00:39 27 4
gpt4 key购买 nike

前言

所以我最近一直在使用 Code::Blocks 编写 C++ 程序,最近在尝试编译包含 freeglut 的项目时遇到了编译问题。我在 Windows 8 上,我已经根据 code::blocks wiki 正确安装了 freeglut .我还安装了 git bash 以及 mingw64。问题是我无法编译我的教授(使用 freeglut 的项目)使用 code::blocks 或在 gitbash 中使用 g++ 命令编写的源代码。

ma​​in.cpp:

/* Copyright (c) Mark J. Kilgard, 1996. */

/* This program is freely distributable without licensing fees
and is provided without guarantee or warrantee expressed or
implied. This program is -not- in the public domain. */

#include "Graphics.h"
void display(void)
{
glClear(GL_COLOR_BUFFER_BIT);
setColor(RED);
drawFilledTriangle(0,0,100,100,200,0);
setColor(BLUE);
drawFilledCircle(200,200,150);
glFlush(); /* Single buffered, so needs a flush. */
}

int main(int argc, char **argv)
{
graphicsSetup( argc, argv, &display);
glutMainLoop();
return 0;
}

图形.cpp

#include <iostream>
using namespace std;

#include "Graphics.h"
#include <cmath>
const double PI = acos(-1.0);
const double ANGLE_STEP = PI/180.0;
void keyboard(unsigned char key, int x, int y)
{
if (key == 27)
exit(1);
}

void clearWindow() {
glClear( GL_COLOR_BUFFER_BIT );
}

void setColor(ColorName name) {
switch(name) {
case WHITE: glColor3d(1.0, 1.0, 1.0); break;
case GREY: glColor3d(0.4, 0.4, 0.4); break;
case BLACK: glColor3d(0.0, 0.0, 0.0); break;
case RED: glColor3d(1.0, 0.0, 0.0); break;
case ORANGE: glColor3d(1.0, 0.5, 0.0); break;
case YELLOW: glColor3d(1.0, 1.0, 0.0); break;
case GREEN: glColor3d(0.0, 1.0, 0.0); break;
case FOREST_GREEN: glColor3d(0.0, 0.25, 0.0); break;
case BLUE: glColor3d(0.0, 0.0, 1.0); break;
case CYAN: glColor3d(0.0, 1.0, 1.0); break;
case MIDNIGHT_BLUE: glColor3d(0.0, 0.0, 0.25); break;
case PURPLE: glColor3d(0.5, 0.25, 0.0); break;
case MAGENTA: glColor3d(1.0, 0.0, 1.0); break;
case BROWN: glColor3d(0.36, 0.16, 0.1); break;
default: cerr << "Trying to set invalid color. Color unchanged" << endl;
}
}
void graphicsSetup(int argc, char *argv[], void (*display)()) {
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_RGB);
if (! glutGet(GLUT_DISPLAY_MODE_POSSIBLE))
glutInitDisplayMode(GLUT_INDEX);
glutInitWindowPosition(50,50);
glutInitWindowSize(640, 480);
glutCreateWindow("single triangle");
glClearColor(1.0,1.0,1.0,0.0);
glutDisplayFunc(display);

// set "esc" key to end program
glutKeyboardFunc(keyboard);

// set coordinates to "normal"
glLoadIdentity();
glOrtho(0,640,0,480, 1, -1);
}

void drawTriangle(int x1, int y1, int x2, int y2, int x3, int y3) {
glBegin(GL_LINE_STRIP);
glVertex2i(x1,y1);
glVertex2i(x2,y2);
glVertex2i(x3,y3);
glVertex2i(x1,y1);
glEnd();
}

void drawFilledTriangle(int x1, int y1, int x2, int y2, int x3, int y3) {
glBegin(GL_POLYGON);
glVertex2i(x1,y1);
glVertex2i(x2,y2);
glVertex2i(x3,y3);
glVertex2i(x1,y1);
glEnd();
}

void drawLine(int x1, int y1, int x2, int y2) {
glBegin(GL_LINE_STRIP);
glVertex2i(x1,y1);
glVertex2i(x2,y2);
glEnd();
}

void drawBox(int x1, int y1, int x2, int y2) {
glBegin(GL_LINE_STRIP);
glVertex2i(x1,y1);
glVertex2i(x2,y1);
glVertex2i(x2,y2);
glVertex2i(x1,y2);
glVertex2i(x1,y1);
glEnd();
}

void drawFilledBox(int x1, int y1, int x2, int y2) {
glBegin(GL_POLYGON);
glVertex2i(x1,y1);
glVertex2i(x2,y1);
glVertex2i(x2,y2);
glVertex2i(x1,y2);
glVertex2i(x1,y1);
glEnd();
}

void drawCircle(int x, int y, int radius) {
double angle;
int X, Y;
glBegin(GL_LINE_STRIP);
for (angle=0;angle< 2.0*PI + ANGLE_STEP; angle += ANGLE_STEP) {
X = x + int(double(radius) * cos(angle));
Y = y + int(double(radius) * sin(angle));
glVertex2i(X,Y);
}
glEnd();
}

void drawFilledCircle(int x, int y, int radius) {
double angle;
int X0, Y0, X1, Y1;
glBegin(GL_TRIANGLES);
X1 = x + radius;
Y1 = y;
for (angle=0;angle< 2.0*PI + ANGLE_STEP; angle += ANGLE_STEP) {
X0 = X1;
Y0 = Y1;
X1 = x + int(double(radius) * cos(angle));
Y1 = y + int(double(radius) * sin(angle));
glVertex2i(x,y);
glVertex2i(X0,Y0);
glVertex2i(X1,Y1);
}
glEnd();
}

Graphics.h

#include <GL/glut.h>

// set the pre-defined colors
enum ColorName {
WHITE,
GREY,
BLACK,
RED,
ORANGE,
YELLOW,
GREEN,
FOREST_GREEN,
BLUE,
MIDNIGHT_BLUE,
CYAN,
PURPLE,
MAGENTA,
BROWN,
NUM_COLORS
};

void clearWindow();
void setColor(ColorName name);
void graphicsSetup(int argc, char *argv[], void (*display)());

// graphic object primatives
void drawTriangle(int x1, int y1,int x2,int y2,int x3,int y3);
void drawLine(int x1, int y1, int x2, int y2);
void drawBox(int x1, int y1, int x2, int y2); // x-y coords of upper-right and lower-left corners
void drawCircle(int x, int y, int radius);

// filled graphics primatives
void drawFilledTriangle(int x1, int y1,int x2,int y2,int x3,int y3);
void drawFilledBox(int x1, int y1, int x2, int y2);
void drawFilledCircle(int x, int y, int radius);

生成文件

TARGET = test.exe

CXX = c:\usr\local\mingw32\bin\g++.exe
FILES = main.cpp Graphics.cpp
OBJS = $(FILES:.cpp=.o)

GINCS = -I/usr/local/include/GL
GLIBS = -L/usr/local/lib -lfreeglut -lglu32 -lopengl32 -Wl,--subsystem,windows

all: $(TARGET)

$(TARGET): $(OBJS)
$(CXX) -o $(TARGET) $(OBJS) $(GLIBS)

%.o: %.cpp
$(CXX) -c $< -o $@ $(GINCS)

clean:
del $(TARGET) $(OBJS)

在 GIT 中编译

  1. cd 进入包含 main.cpp 的目录;图形.cpp;图形.h;生成文件

  2. 然后我运行 make 并获得以下结果,即使我已将所有 freeglut lib、include 和 bin 内容文件添加到 C:\usr\local\mingw32 下的正确目录中(inlcude\,lib\,bin) 和 GL\glut.h 肯定在那里...

$ make
c:\usr\local\mingw32\bin\g++.exe -c main.cpp -o main.o -I/usr/local/include/GL
In file included from main.cpp:7:0:
Graphics.h:1:21: fatal error: GL/glut.h: No such file or directory
compilation terminated.
makefile:16: recipe for target 'main.o' failed
make: *** [main.o] Error 1

在代码:: block 中编译

  1. 我打开 main.cpp ;图形.h;代码:: block 中的 Graphics.cpp
  2. 在 main.cpp 处于事件状态时,我“构建并运行”。 我收到此错误,但似乎什么也没发生,除了现在项目目录中有一个 main.o。
C:\Users\Admin\Desktop\C++Projects\cosc1337.code\GraphicsLib\examples\ex4\main.o:main.cpp|| undefined reference to `_imp____glutInitWithExit@12'
C:\Users\Admin\Desktop\C++Projects\cosc1337.code\GraphicsLib\examples\ex4\main.o:main.cpp|| undefined reference to `_imp____glutCreateWindowWithExit@8'
C:\Users\Admin\Desktop\C++Projects\cosc1337.code\GraphicsLib\examples\ex4\main.o:main.cpp|| undefined reference to `_imp____glutCreateMenuWithExit@8'
C:\Users\Admin\Desktop\C++Projects\cosc1337.code\GraphicsLib\examples\ex4\main.o:main.cpp|| undefined reference to `glClear@4'
C:\Users\Admin\Desktop\C++Projects\cosc1337.code\GraphicsLib\examples\ex4\main.o:main.cpp|| undefined reference to `setColor(ColorName)'
C:\Users\Admin\Desktop\C++Projects\cosc1337.code\GraphicsLib\examples\ex4\main.o:main.cpp|| undefined reference to `drawFilledTriangle(int, int, int, int, int, int)'
C:\Users\Admin\Desktop\C++Projects\cosc1337.code\GraphicsLib\examples\ex4\main.o:main.cpp|| undefined reference to `setColor(ColorName)'
C:\Users\Admin\Desktop\C++Projects\cosc1337.code\GraphicsLib\examples\ex4\main.o:main.cpp|| undefined reference to `drawFilledCircle(int, int, int)'
C:\Users\Admin\Desktop\C++Projects\cosc1337.code\GraphicsLib\examples\ex4\main.o:main.cpp|| undefined reference to `glFlush@0'
C:\Users\Admin\Desktop\C++Projects\cosc1337.code\GraphicsLib\examples\ex4\main.o:main.cpp|| undefined reference to `graphicsSetup(int, char**, void (*)())'
C:\Users\Admin\Desktop\C++Projects\cosc1337.code\GraphicsLib\examples\ex4\main.o:main.cpp|| undefined reference to `_imp__glutMainLoop@0'
=== Build failed: 11 error(s), 0 warning(s) (0 minute(s), 0 second(s)) ===
  1. 与上面相同,当 Graphics.cpp 处于事件状态并且我构建并运行时,我得到与以前相同的错误,但 Graphics.o 已创建。

总结:

在我使用 code::blocks 创建目标文件后,我就可以进入 gitbash 并运行 makefile 来链接它们,它确实创建了一个我可以运行并查看的工作 test.exe我的位置在哪里,但我感到困惑和沮丧,因为我不能只使用 code::blocks 或只使用 git,因为这样做会使对代码的调整花费不合理的时间来获得满意的结果,并且肯定会在以后引起问题

编辑

所有其他 Programs我已经编写,以及“hello world”编译,在 code::blocks 和 gitbash 上没有问题。

最佳答案

在控制台中构建

使用 Makefile 构建项目包括两个步骤:

  • 将源文件编译为二进制目标文件
  • 目标文件与可执行文件的链接

可以只使用来自纯 cmd 的 MinGW 来完成安慰。唯一的要求是设置 PATH指向 MinGW 二进制文件的变量。它只能在该控制台本地完成,例如:

PATH=c:\MinGW\mingw-w64\i686-5.1.0-posix-dwarf-rt_v4-rev0\mingw32\bin;%PATH%

假设二进制 freeglut 3.0.0 MinGW Package被提取到文件夹 c:\freeglut .

::compilation
g++ -c main.cpp -o main.o -I"c:\freeglut\include"
g++ -c Graphics.cpp -o Graphics.o -I"c:\freeglut\include"

::linkage
g++ Graphics.o main.o -o test -L"c:\freeglut\lib" -lfreeglut -lglu32 -lopengl32 -Wl,--subsystem,windows

编译期间main.oGraphics.o生成目标文件。

在您的情况下,错误出在这一步。它与标题路径有关。检查你的 gitbash路径 /usr/local/include/列出它确实存在 ls /usr/local/include/ .如果存在,请注意在您的源文件中 header 包含为 GL/glut.h还有GL目录存在于 GINCS 中.如果 header 路径为/usr/local/include/GL/glut.h,则报错.所以,删除 GL来自 GINCS .

链接步骤产生目标test.exe二进制。

代码:: block 项目

可以调整 Code::Blocks IDE 使 GLUT 项目模板与 freeglue 一起工作如 Using FreeGlut with Code::Blocks 中所述.

刚好需要替换Glut32通过 freeglut在向导脚本中 glut\wizard.script并在项目模板中 glut.cbp .

现在可以使用 GLUT project 创建一个新项目预设。它只会问你 glut小路。然后 Code::Blocks 自动创建配置了所需编译器选项( header 路径)和链接器选项(路径和库)的项目。它还给出了 main.cpp包含可以按原样编译的基本示例的文件。

看起来您创建的不是 GLUT project但只是一个普通的空应用程序项目。要使其工作,您需要配置 Project build options :

  • Search directories : 在 Compiler 中添加路径标签 ( c:\freeglut\include ) 和 Linker标签 ( c:\freeglut\lib );
  • Linker settings : 添加所需库的名称,不带 l前缀(freeglutglu32opengl32)。

关于c++ - 使用 freeglut 编译问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33193516/

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