OSX 10.9 - Eclipse,C ++,OpenGL,找不到函数

时间:2014-02-17 22:11:45

标签: c++ eclipse macos opengl

在Eclipse上尝试设置OpenGL数小时之后,我已经设法包含了所有缺少的库,但它仍然多次输出此错误:

expected initializer before '__AVAILABILITY_INTERNAL__MAC_10_0_DEP__MAC_10_9' line 255, external location: /System/Library/Frameworks/OpenGL.framework/Headers/glu.h

并且它也不承认任何过剩功能:

'glutInit' was not declared in this scope   /Teste  main.cpp    line 9  C/C++ Problem

代码非常简单,只是为了尝试启动过剩。

#include <OpenGL/gl.h>
#include <OpenGL/glu.h>
#include <GLUT/glut.h>

int main( int argc, char *argv[] )
{
    glutInit( &argc, argv );
    return 0;
}

0 个答案:

没有答案