对“g_Templates”的未定义引用
我正在尝试使用 MinGW 为我的应用程序编译 ASIO,但我不断遇到对 'g_Templates'
、'g_cTemplates'
和 'vtable for AsioDriver 的未定义引用'
。我正在链接 -lole32 -luuid
。我需要哪些额外的库来编译它?
Google 发现这是一个 DirectShow 过滤器,但 MinGW 应该能够针对 DirectShow 进行编译。
I am trying to compile ASIO with MinGW for my application, but I keep running into undefined reference to 'g_Templates'
, 'g_cTemplates'
, and 'vtable for AsioDriver'
. I am linking with -lole32 -luuid
. What additional libraries do I need to compile this?
Google found that this is a DirectShow filter, but MinGW should be able to compile against DirectShow.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过下载Windows SDK并自己将DirectShow基类编译到strmbase.lib中解决了这个问题。
I solved the problem by downloading Windows SDK and compiled the DirectShow base classes myself into strmbase.lib.