glut errors

Started by
3 comments, last by NightCreature83 11 years, 11 months ago
Hello, i have been reading up on some opengl and glut and desided to use it. however i cant get glut to work. i have tryed online toutorials and videos and none work. i am using ubuntu 11.10 and the Code::Blocks ide. i keep getting the errors saying undefined referance to all my glut calls and i am starting to get pissed...Please help me!!!
Advertisement

Hello, i have been reading up on some opengl and glut and desided to use it. however i cant get glut to work. i have tryed online toutorials and videos and none work. i am using ubuntu 11.10 and the Code::Blocks ide. i keep getting the errors saying undefined referance to all my glut calls and i am starting to get pissed...Please help me!!!


The original GLUT is so old that some of its revival forks are abandoned. Freeglut might me more of interest to you.
Have you added the library files to the linking process? Because when you forget to do this and just include the header files, on linking the linker will give you unresolved reference errors as it doesn't know what code the functions need to link to.

Worked on titles: CMR:DiRT2, DiRT 3, DiRT: Showdown, GRID 2, theHunter, theHunter: Primal, Mad Max, Watch Dogs: Legion

How do u link it. Im still new with linux and not 100%up to spead with all of it. Do u know how to do it or know a toutorial.
What build tool are you using for compiling your source? As this mostly comes down to the build tool you are using.

In GCC you specify additional include libraries on the command line like:

gcc example.o -lglut

The -l flag is used for additional libraries followed immediately by the library name, but how this is done comes down more to the tool you are using to compile and link with then anything else.

MSBuild for example has an option in it's project file that specifies which additional libraries should be used when linking, so do most other build tools. Google your build tools name and linking with additional libraries and you should find enough information on the web to get you started.

Worked on titles: CMR:DiRT2, DiRT 3, DiRT: Showdown, GRID 2, theHunter, theHunter: Primal, Mad Max, Watch Dogs: Legion

This topic is closed to new replies.

Advertisement