收到“ld: 找不到 -lcunit” CUnit 错误

发布于 2025-01-05 06:16:19 字数 445 浏览 0 评论 0原文

我在 Windows 7 上使用 NetBeans 7.1。我下载了 CUnit 存档并使用存档提供的 shell 脚本来安装它($make install 等)。我使用 Cygwin 作为编译器,每当我尝试构建单元测试时,都会收到以下错误:

/usr/lib/gcc/i686-pc-cygwin/4.3.4/../.. /../../i686-pc-cygwin/bin/ld: Cannot find -lcunit

显然,链接器(ld)不知道去哪里寻找某些东西,但我不知道这些东西如何运作的复杂性。在我的计算机上搜索 lcunit 除了该项目的 makefile 之外没有返回任何内容。

我认为我应该提到的一件事是,当我安装 CUnit 时,NetBeans 不知道在哪里寻找它。它被安装到 /usr/local/ 中,并且这不是 NetBeans 解析的路径之一。

I'm using NetBeans 7.1 on Windows 7. I downloaded the CUnit archive and used shell scripts supplied with the archive to install it ($make install, etc.). I'm using Cygwin as my compiler, and whenever I try to build the unit test, I get the following error:

/usr/lib/gcc/i686-pc-cygwin/4.3.4/../../../../i686-pc-cygwin/bin/ld: cannot find -lcunit

Obviously, the linker (ld) doesn't know where to look for something, but I don't know the intricacies of how this stuff works. Searching for lcunit on my computer didn't return anything except for the makefile of this project.

One thing I think I should mention is that when I installed CUnit, NetBeans did not know where to look for it. It got installed into /usr/local/ and this was not one of the paths NetBeans parsed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

酒浓于脸红 2025-01-12 06:16:19

“-lcunit”只是一个标志/选项,指示您的编译器链接应用程序中的所有 cunit 内容。
用法可能是这样的(gcc):

gcc test.c -lcunit -o test

看起来你的编译器不知道如何处理这个标志...:/

"-lcunit" is just a flag/option instructing your compiler to link all cunit stuff in your app.
usage could be something like this (gcc):

gcc test.c -lcunit -o test

looks like your compiler doesn't know what to do with this flag... :/

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