无法在 Lion 上编译测试用例文件,提示未定义架构符号

发布于 2024-12-02 22:10:02 字数 362 浏览 2 评论 0原文

我的测试文件夹下有一个简单的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

就像说晚安 2024-12-09 22:10:02

我找到了答案:您需要在命令行中添加“-framework OpenGL -framework GLUT”。

I found out the answer: you need to add "-framework OpenGL -framework GLUT" to the command line.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文