无法在 Lion 上编译测试用例文件,提示未定义架构符号
我的测试文件夹下有一个简单的 testcase.cpp
文件,其中包含 2 个 .data 文件。当我尝试在 OS X Lion 上编译测试时,收到一条错误消息:
g++ -o testcase testcase.cpp
但是它无法编译并抱怨:
Undefined symbols for architecture x86_64
有人遇到此错误吗?你能告诉我在编译时是否需要设置一些标志或其他东西吗?
更新:这是一个图形测试用例,因此它包括 glut。我尝试将 -lglut
添加到命令行,但这没有帮助。
I have a simple testcase.cpp
file with 2 .data files under my test folder. When I try to compile the test on OS X Lion, I get an error message that says:
g++ -o testcase testcase.cpp
However it does not compile and complains:
Undefined symbols for architecture x86_64
Has someone faced this error? Can you tell me if I need to set some flag or something while compiling?
Update: this is a graphics test case, so it includes glut. I tried to add -lglut
to the command line, but that doesn't help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了答案:您需要在命令行中添加“-framework OpenGL -framework GLUT”。
I found out the answer: you need to add "-framework OpenGL -framework GLUT" to the command line.