Visual Studio 中的链接器库错误
运行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
文件夹“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.