[ogl] compile OpenGL code in linux

作者: noenil 2008-10-09 00:05:39
Can't use any IME in my Fedora, so English comes here.

Following are what I found useful, copy&paste them here.

Newbie in opengl under linux platform face the difficulty in compiling the c++ code and linking the libraries like GLUT, GL, GLU. The best way to avoid the problem is to create a make file which can compile any GCC c++ source file and produce the output file.

CC = gcc
GCCFLAGS = -O
INCLUDE = -I. -I/usr/include
FILENAME = zbuffer
LDLIBS = -lglut -lXext -lX11 -lXmu -lXi -lGL -lGLU -lm -lSDL -lSDL_mixer -lpthread
LDFLAGS = -L/usr/X11R6/lib -L/usr/lib -L/lib
program:
$(CC) $(GCCFLAGS) $(INCLUDE) $(FILENAME).cpp $(LDFLAGS) $(LDLIBS) -o $(FILENAME)

In my Fedora, initializing OpenGL by SDL, I found '-lGL -lglut -lSDL -lpthread' are just work.

相关资讯