up vote 0 down vote favorite
share [g+] share [fb]

I am studying graphics and currently using OpenGL with GLUT. Doing my editing in codeblocks and using an online tutorial located at lighthouse3d. I am using the main method declared on that page however it will not let me compile. The error message consists of the main method not returning an int, I have "played" with the code enough to say I am confused. The GLUT Library is installed, and I do not see where the error is coming from.

Thank you, Zach Smith

link|improve this question

29% accept rate
feedback

2 Answers

You probably have a method like this:

void main(int argc, char** argv) {
    // The code...
}

Change it to this:

int main(int argc, char** argv) {
    // The code...
    return 0;
}
link|improve this answer
1  
If I do this many other errors come up. Here are some examples of the errors... C:\Users\Zach\Desktop\OpenGL_Robot\robot.o:robot.cpp:(.text+0x1c)||undefined reference to ___glutInitWithExit@12'| C:\Users\Zach\Desktop\OpenGL_Robot\robot.o:robot.cpp:(.text+0x5d)||undefined reference to ___glutCreateMenuWithExit@8'| – Zach Smith Nov 5 '09 at 18:54
@Zach: I only know enough to help you with your original question. I recommend you create another question to deal with your other errors. – Adam Paynter Nov 5 '09 at 18:56
Either you're missing a library (glut.lib) or you've flipped the load order around. – knight666 Nov 5 '09 at 19:05
Small point: You don't really need to return 0 in openGL. After you call glutMainLoop(), everything is handled by the Event Handler. – SauceMaster Nov 9 '09 at 19:45
feedback

The problem is that you are not linking the needed libraries.

Go to the project properties by right clicking on the project icon in the 'Solution Explorer' and click on 'Properties'. Then go under 'Configuration Properties' -> 'Linker' -> 'Input' and add the following libraries to the 'Additional Dependencies' field:

opengl32.lib glut32.lib glu32.lib

Rebuild your project and all should be fine!

link|improve this answer
Agreed. You've not assigned libraries to your project. If you are using GCC compiler, you should assign "glut32.a" as mrucci answered. Note: not ".lib", but ".a" files! BUT if your compiler of choice is VisualStudio' one - do as described above. – shybovycha Nov 21 '10 at 20:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.