尝试在 Visual Studio 9.0 中编译 live555 视频流平台代码时出现错误
我正在尝试使用 Microsoft Visual Studio 9.0 在我的系统上编译视频流 live555 平台代码。该代码可在此链接中找到: http://www.live555.com/liveMedia/public/
我已经生成了 makefile对于此代码,请使用此处提供的 genWindowsMakefiles
脚本。我遇到的问题是在运行我创建的批处理文件(run.bat)时。在此阶段,我收到以下错误:
NMAKE:致命错误 U1073:不知道如何制作“../groupsock/libgroupsock.lib”
指示 libgroupsock.lib 目标文件库不存在于该目录中。该目标文件库也不存在于源代码中。我该如何解决这种情况?
I am trying to compile the video streaming live555 platform code on my system using Microsoft Visual Studio 9.0. The code is available in this link:
http://www.live555.com/liveMedia/public/
I have generated the makefiles for this code using the provided genWindowsMakefiles
script provided here. The problem I encountered was while running the batch file I created (run.bat). At this stage, I get the following error:
NMAKE : fatal error U1073: don't know how to make '../groupsock/libgroupsock.lib'
indicating that libgroupsock.lib object file library is not present in this directory. This object file library is not present in the source code either. How do I work around this situation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
规则生成,
libgroupsock.lib 文件将由文件 groupsock/Makefile.tail 中的 其中
genWindowsMakefiles.cmd 用于创建最终的 groupsock/groupsock.mak makefile。我不知道您的
run.bat
包含什么,但我认为您应该首先创建 libgroupsock.lib 文件。
The libgroupsock.lib file will be generated by the rule
from the file groupsock/Makefile.tail which
genWindowsMakefiles.cmd uses to create the final groupsock/groupsock.mak makefile. I do not know what your
run.bat
contains, but I assume that you should do afirst to create the libgroupsock.lib file.