Skip to main content
GameDev.net gamedev.net
🔒 Locked

gluPerspective (undefined reference???)

Started by sab3156 May 17, 2005 at 10:08 PM 2 replies 9.9k views
Original Post
sab3156
sab3156
I am running opengl through Dev-C++. here is my linker output: ___________________ c:\programming\game\_main.o(.text+0x84):_main.cpp: undefined reference to `gluPerspective@32' ___________________ what is this about?? how can i fix this problem?
Air-Conditioners are like computers. They stop working when you open windows.
extralongpants
extralongpants
I'm not totally familiar with dev-c++ compiler messages, but I'm pretty sure it just means you aren't linking your project to glu32.lib

Drew_Benton
Drew_Benton
Quote:
Original post by odiousangel
I'm not totally familiar with dev-c++ compiler messages, but I'm pretty sure it just means you aren't linking your project to glu32.lib


Correct, to link in that .lib file to Dev-CPP you need to add in -lglu32 to the Linker Box in Project->Project Options->Parameters.
kburkhart84
kburkhart84
With visual c++, when you link something using the project options, it links it only for the application from within the IDE. To make it link the libs to the actual .exe, you need to put a precompiler message in there. But I could be wrong, this is how I understood it. It may or may not apply to your compiler/IDE(Dev C++).


Topic Locked

This topic has been locked by a moderator. New replies are not allowed.

Sign in to reply to this topic.