View Full Version : undefined reference to gl everything
Okay I'm working on my very first "hello world" OGL program and I keep getting compile errors:
>undefined reference to `glClear'
>undefined reference to `glutCreateWindow'
etc.
I've included GL/glut.h; what's my problem?
Make sure you link to opengl32.lib and glut32.lib.
Nate http://nate.scuzzy.net
Sorry, I should have said, I'm on a FreeBSD machine.
Am I looking for something like
$>gcc hello.c -lGL
How do I check if I have the required files?
Okay, I've found the librarys. They where hiding in the X11R6's lib folder.
But which one do I need to include?
Sjonny
03-24-2000, 11:51 AM
Here's my Makefile:
CCOPS = -c -g -Wall
LINKS = -lglut -lMesaGLU -lMesaGL -lm -lX11 -lXext -lXmu
LDPATH = -L/usr/lib -L/usr/X11R6/lib
INCS = -I. -I/usr/include
OBJS = main.o
.cpp.o :
g++ $(CCOPS) $(INCS) $<
all: main
main: $(OBJS)
g++ $(OBJS) $(INCS) $(LDPATH) $(LINKS) -o $@
clean:
rm -f main *.o core
Powered by vBulletin® Version 4.2.0 Copyright © 2013 vBulletin Solutions, Inc. All rights reserved.