Visual Studio 中的链接器库错误

发布于 2024-12-17 03:31:36 字数 225 浏览 0 评论 0原文

运行 Visual Studio 2010 用 C++ 编写 openGL 程序

时出现此错误,并且我一生都无法弄清楚为什么

fatal error LNK1104: cannot open file 'Image_Loading/nvImage.lib'

该文件位于正确的位置,并且 nvImage.lib 存在于链接器的附加依赖项中,有什么想法吗?

Running visual studio 2010 writing an openGL program in C++

I'm getting this error, and can't for the life of me figure out why

fatal error LNK1104: cannot open file 'Image_Loading/nvImage.lib'

The file is in the correct place, and nvImage.lib is present in the additional dependencies of the linker, any ideas??

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

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

发布评论

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

评论(1

新一帅帅 2024-12-24 03:31:36

文件夹“Image_Loading”可能不在您的库搜索路径中。包含文件具有不同的搜索路径,因此即使找到包含文件,该文件夹也可能从库搜索路径中丢失。

您应该将该文件夹添加到 LIB 环境变量中,或者将 /LIBPATH:folder 添加到链接器的命令行中。

The folder "Image_Loading" is probably not in your library search path. Include files has a different search path, so even if its find the includes, the folder might be missing from the libary search path.

you should either add the folder to the LIB enviromental variable, or add /LIBPATH:folder to the command line of the linker.

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