cygwin 上的 IPP 链接器错误
我已经构建了一个使用 mkl 和 ipp 的程序,可以在 mac 和 linux 上运行。我现在正在使用 cygwin 和 gcc 为 Windows 构建该程序,但无法链接它。
我收到的错误是:
警告:.drectve
-defaultlib:"uuid.lib" ' 无法识别 ../../../bin/libMath.a(VectorUtility.cxx.o):VectorUtility.cxx:(.text+0x95): 未定义的引用
_ippGetLibVersion' ../../../bin/libMath.a(VectorUtility.cxx.o):VectorUtility.cxx:(.text+0x157): 未定义的引用 `_ippsWinHann_32f_I'
(以及更多类似的)。
我正在使用链接路径:
/opt/intel/IPP/6.1.2.041/ia32/lib
并链接到以下内容:
ippiemerged、ippimerged、ippmemerged、ipppmmerged、ippsemerged、ippsmerged 和 ippcorel。
有人可以指出我做错了什么吗?
I've built a program that uses mkl and ipp that runs on mac and linux. I'm now building that program for Windows using cygwin and gcc, and can't get it to link.
The errors I'm getting are:
Warning: .drectve
-defaultlib:"uuid.lib" ' unrecognized
_ippGetLibVersion'
../../../bin/libMath.a(VectorUtility.cxx.o):VectorUtility.cxx:(.text+0x95):
undefined reference to
../../../bin/libMath.a(VectorUtility.cxx.o):VectorUtility.cxx:(.text+0x157):
undefined reference to
`_ippsWinHann_32f_I'
(and many more like that).
I'm using link path:
/opt/intel/IPP/6.1.2.041/ia32/lib
and linking to the following:
ippiemerged, ippimerged, ippmemerged, ippmmerged, ippsemerged, ippsmerged and ippcorel.
Can someone point me to what I'm doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
天哪,IPP 一定是最烦人的事情,要弄清楚你需要什么库。英特尔只是不提供任何信息。
我使用以下库:
God IPP has to be the most annnoying thing to work out what libraries you need. Intel just do not give any info.
I use the following libraries:
我曾经在静态链接时遇到与评估版本相同的问题。解决方案是动态链接:没有商业许可,不支持静态链接。
I used to have the same problem with the evaluation version when linking statically. The solution was to link dynamically: static linking is not supported without commercial license.