- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试使用 waf 在 osx 上构建一个 C++ opengl 程序,但无法让它工作。
通常当我编译一个 opengl 程序时,我在终端中使用它:
g++ main.cpp -framework GLUT -framework OpenGL
我使用以下 wscript:
top = '.'
out = 'build'
def options(opt):
opt.load('compiler_cxx')
def configure(conf):
conf.load('compiler_cxx')
# conf.env.append_value('LINKFLAGS', '-framework GLUT -framework OpenGL')
def build(bld):
bld.program(
source = 'main.cpp',
target = 'a',
linkflags = ["-framework GLUT", "-framework OpenGL"],
)
但是我在构建它时遇到链接错误:
$ waf configure
Setting top to : /Users/tt/Documents/class/labs/Lab 3 fixed/src
Setting out to : /Users/tt/Documents/class/labs/Lab 3 fixed/src/build
Checking for 'g++' (c++ compiler) : /usr/bin/g++
'configure' finished successfully (0.040s)
$ waf
Waf: Entering directory `/Users/tt/Documents/class/labs/Lab 3 fixed/src/build'
[2/2] cxxprogram: build/main.cpp.1.o -> build/a
Undefined symbols for architecture x86_64:
"_glViewport", referenced from:
resize(int, int)in main.cpp.1.o
"_glMatrixMode", referenced from:
resize(int, int)in main.cpp.1.o
Camera::show() in main.cpp.1.o
"_glLoadIdentity", referenced from:
resize(int, int)in main.cpp.1.o
Camera::show() in main.cpp.1.o
"_gluPerspective", referenced from:
resize(int, int)in main.cpp.1.o
"_glutPostRedisplay", referenced from:
resize(int, int)in main.cpp.1.o
idle() in main.cpp.1.o
"_gluLookAt", referenced from:
Camera::show() in main.cpp.1.o
"_glRotatef", referenced from:
Camera::show() in main.cpp.1.o
"_glTranslatef", referenced from:
Camera::show() in main.cpp.1.o
"_glEnableClientState", referenced from:
Mesh::render() in main.cpp.1.o
"_glUseProgram", referenced from:
Mesh::render() in main.cpp.1.o
"_glGetAttribLocation", referenced from:
Mesh::render() in main.cpp.1.o
"_glEnableVertexAttribArray", referenced from:
Mesh::render() in main.cpp.1.o
"_glBindBuffer", referenced from:
Mesh::render() in main.cpp.1.o
Mesh::Mesh(char*)in main.cpp.1.o
"_glVertexPointer", referenced from:
Mesh::render() in main.cpp.1.o
"_glVertexAttribPointer", referenced from:
Mesh::render() in main.cpp.1.o
"_glNormalPointer", referenced from:
Mesh::render() in main.cpp.1.o
"_glDrawElements", referenced from:
Mesh::render() in main.cpp.1.o
"_glDisableClientState", referenced from:
Mesh::render() in main.cpp.1.o
"_glEnable", referenced from:
display() in main.cpp.1.o
"_glClearColor", referenced from:
display() in main.cpp.1.o
"_glClear", referenced from:
display() in main.cpp.1.o
"_glutSwapBuffers", referenced from:
display() in main.cpp.1.o
"_glCreateProgram", referenced from:
setupGLSL(char*)in main.cpp.1.o
"_glCreateShader", referenced from:
setupGLSL(char*)in main.cpp.1.o
"_glShaderSource", referenced from:
setupGLSL(char*)in main.cpp.1.o
"_glCompileShader", referenced from:
setupGLSL(char*)in main.cpp.1.o
"_glGetShaderiv", referenced from:
setupGLSL(char*)in main.cpp.1.o
"_glGetShaderInfoLog", referenced from:
setupGLSL(char*)in main.cpp.1.o
"_glAttachShader", referenced from:
setupGLSL(char*)in main.cpp.1.o
"_glLinkProgram", referenced from:
setupGLSL(char*)in main.cpp.1.o
"_glGenBuffers", referenced from:
Mesh::Mesh(char*)in main.cpp.1.o
"_glBufferData", referenced from:
Mesh::Mesh(char*)in main.cpp.1.o
"_glutInit", referenced from:
_main in main.cpp.1.o
"_glutInitDisplayMode", referenced from:
_main in main.cpp.1.o
"_glutInitWindowSize", referenced from:
_main in main.cpp.1.o
"_glutCreateWindow", referenced from:
_main in main.cpp.1.o
"_glutDisplayFunc", referenced from:
_main in main.cpp.1.o
"_glutIdleFunc", referenced from:
_main in main.cpp.1.o
"_glutReshapeFunc", referenced from:
_main in main.cpp.1.o
"_glutKeyboardFunc", referenced from:
_main in main.cpp.1.o
"_glutKeyboardUpFunc", referenced from:
_main in main.cpp.1.o
"_glutSpecialFunc", referenced from:
_main in main.cpp.1.o
"_glutMouseFunc", referenced from:
_main in main.cpp.1.o
"_glutMotionFunc", referenced from:
_main in main.cpp.1.o
"_glutMainLoop", referenced from:
_main in main.cpp.1.o
ld: symbol(s) not found for architecture x86_64
collect2: ld returned 1 exit status
Waf: Leaving directory `/Users/n7down/Documents/class/spring 2013/5542 (Real Time Rendering)/labs/Lab 3 fixed/src/build'
Build failed
-> task in 'a' failed (exit status 1):
{task 4537197904: cxxprogram main.cpp.1.o -> a}
['/usr/bin/g++', '-framework GLUT', '-framework OpenGL', 'main.cpp.1.o', '-o', '/Users/tt/Documents/class/labs/Lab 3 fixed/src/build/a']
有什么方法可以修复/执行此操作吗?
最佳答案
好吧,您的问题似乎是直接使用 LINKFLAGS
并带有诸如“-framework X”之类的参数。它会被 python 错误地解释。直接使用WAF提供的framework
参数:
top = '.'
out = 'build'
def options(opt):
opt.load('compiler_cxx')
def configure(conf):
conf.load('compiler_cxx')
def build(bld):
bld.program(
source = 'main.cpp',
target = 'a',
framework = ["GLUT", "OpenGL"],
)
关于c++ - 你如何在 osx 上使用 waf 链接 opengl 和 glut?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15327074/
我想开始使用OpenGl开发图形程序 为了开始,我正在关注 OpenGL 我遇到过使用 GLUT 和不使用 GLUT 进行编程,但作为 OpenGL 的新手,我更加困惑如何使用它? 最佳答案 GLUT
我的应用程序在使用 wglCreateContext 上下文的 Windows 上仅使用 gl/glu。 该应用程序有自己的 key 管理器,现在我喜欢为输入框和选择列表实现 GUI 框架。 我找到了
我正在用 C++ 进行一些 OpenGL 编程。 这是我的代码的一部分: #include #include #include #include #include Properties.
我正在使用 Win32 API 处理 OpenGL。因此我正在使用 wgl (Wiggle)。一切安好。除非我想使用 FREEGLUT 库中的一些形状。例如,茶壶。我正在查看 freeglut 的源代
我正在尝试在 Haskell 中制作图形,并且一直在使用 Haskell.org 的教程 (http://www.haskell.org/haskellwiki/OpenGLTutorial1)。但是
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求提供代码的问题必须表现出对所解决问题的最低限度的了解。包括尝试的解决方案、为什么它们不起作用以及预期结果
我正在用 C 语言开发一个带有 GLUT 的应用程序。我有一个基本的 GLUT Canvas ,我可以在其中绘制 OpenGL 内容。 当其他 X11 窗口与 GLUT Canvas 重叠然后被删除时
我最近重新设计了我的应用程序,以便在 Idle 函数中完成数据收集。该程序从 argv[1] 读取文件并从该文件中解析出命令。这部分似乎都可以正常工作,并且解析的数据是准确的。 问题出在显示功能上。命
我遇到了一个奇怪的问题,当我以零延迟调用它时,glutTimerFunc 似乎随机停止工作。 这是我的代码: #include #include #include int x = 0; void
我正在处理一项作业,要求我仅使用隐藏线渲染图像。我在网上找到了有关如何删除隐藏线的内容,但我一直未能成功地弄清楚如何反转代码以使其仅绘制隐藏线。 通常,当我访问 Stack Overflow 时,我喜
我想将一个对象(立方体)乘以一定的数字,在本例中假设为 25,我确实有一个立方体的代码,并且它可以工作,但我不知道如何制作更多。我是 GLUT 的新人。 #include #include #in
嘿, 我正在尝试使用 C++ 使用 OpenGL 和 CUDA 创建场景,但是当我尝试传递函数进行初始化时收到错误消息。这是我的标题: class SimpleScene { public:
我有一个我在 6 个多月前编写的程序,它使用了 GLUT 库。 6 个月前我写的时候它运行得非常好。从那以后我就没有使用过它,也没有以任何方式编辑过代码。 该程序有一些立方体以一些随机速度四处漂浮,它
我有一个过剩的问题,我想要一个回调来知道用户何时移动我的应用程序的窗口,但我没有在过剩中发现任何东西。 我的目标是只在 Windows 上制作一个应用程序,是否可以使用 MFC 保留我的过剩代码来做到
我正在尝试在 GLUT c++ 上编写“Classic Snake”,但遇到了一些问题。 例如,当我的蛇向右移动时,我将目的地更改为向上,同时将其更改为向右蛇进入自身内部(我禁止将目的地从右更改为左)
我正在尝试使用以下摄像机代码实现摄像机控制的场景:http://www.swiftless.com/tutorials/opengl/camera2.html 还有书中的风景代码,随机生成地形。通过使
上周,我尝试了几个在阅读 GLUT 教程时发现的示例,一切都运行良好。 现在,当我重试这些相同的示例时,我得到了一个奇怪的行为:我的 GLUT 窗口显示了窗口所在位置的桌面部分(所以如果 GLUT 窗
我正在尝试使用以下方法将纹理渲染到平面: unsigned char image[HEIGHT][WIDTH][3]; ... GLuint textureId; glGenTextures(1, &
我编写了模拟选择排序操作的程序。我添加了函数 myKeyboard 来退出程序,但是由于使用函数 sleep() 来模拟动画,myKeyboard 仅在排序完成后才起作用。有什么方法可以替换函数 sl
当我编译后尝试运行这段代码时,我得到的只是一个没有内容的窗口边框,那么错误在哪里? 注意:我用的是ubuntu和gcc编译 gcc -lglut Simple.c -o Simple The out
我是一名优秀的程序员,十分优秀!