I have been trying to setup the OpenGL and GLUT libraries in Eclipse, with CDT, on OS X with not very much success. I cannot seem to get eclipse to actually realize where GLUT is. It is currently giving me the error that I have an unresolved inclusion GL/glut.h. Looking around online I found that I should be using the -framework GLUT flag in the gcc linker settings, but this seems ineffective.
|
Ok. I got it working in X11. The reason I could only get it working on X11 is because it seems the OpenGL libs on the OS are for the 64-bit architecture, but eclipse will only compile code if we use 32-bit architecture. Maybe if this got fixed we could use OS X pre-installed libraries. Also, maybe there is a 32-bit version lying around on the OS we could use that but I can't seem to find it. I, however, am content with using X11 for my learning purposes. First create your C++ project. Then since you can't compile code in 64-bit using eclipse add the following...
Then you need your libraries and linking set up. To do this do the following:
Lastly you need to set a DISPLAY variable.
Before you try running start up X11. Try the following code to get something I've got running in my machine. Hope it works for you!
|
|||||
|
|
Depending on which GLUT library you installed in OS X your include might be different. On my system I have to use:
To make sure my code is cross platform I use the following pre-processor statement:
That might fix some or your problems. |
||||
|
|
You can find it here: |
|||
|
|
|
The default install directory for MacPorts is /opt/local. Could be /opt/local isn't added to your compiler include path in Eclipse. Either that, or reinstalling Xcode to give you GLUT/glut.h on the default include path for Xcode libs (which you may then need to add to eclipse? I don't run OS X so I can't say what the Xcode installdir is, but it looks like it could be in /Developer, or /Library/Developer/Shared). |
|||
|
|





