cygwin 上的 IPP 链接器错误

发布于 2024-08-18 12:15:21 字数 696 浏览 10 评论 0原文

我已经构建了一个使用 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
../../../bin/libMath.a(VectorUtility.cxx.o):VectorUtility.cxx:(.text+0x95):
undefined reference to
_ippGetLibVersion'
../../../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 技术交流群。

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

发布评论

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

评论(2

节枝 2024-08-25 12:15:21

天哪,IPP 一定是最烦人的事情,要弄清楚你需要什么库。英特尔只是不提供任何信息。

我使用以下库:

"ippsmerged.lib"
"ippsemerged.lib"
"ippscemerged.lib"
"ippsrmerged.lib"
"ippsremerged.lib"
"ippcorel.lib"

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:

"ippsmerged.lib"
"ippsemerged.lib"
"ippscemerged.lib"
"ippsrmerged.lib"
"ippsremerged.lib"
"ippcorel.lib"
紧拥背影 2024-08-25 12:15:21

我曾经在静态链接时遇到与评估版本相同的问题。解决方案是动态链接:没有商业许可,不支持静态链接。

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.

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