程序中使用了 cv::cuda::dft() 函数,需要在链接的时候使用libcufft_static.a这个库。链接出现大量类似错误:
error: undefined reference to __cudaRegisterLInkedBinary_最近解决的办法是:使用libcufft.so代替,问题解决,但是可惜没有静态链接。
本文共 222 字,大约阅读时间需要 1 分钟。
程序中使用了 cv::cuda::dft() 函数,需要在链接的时候使用libcufft_static.a这个库。链接出现大量类似错误:
error: undefined reference to __cudaRegisterLInkedBinary_最近解决的办法是:使用libcufft.so代替,问题解决,但是可惜没有静态链接。
转载于:https://www.cnblogs.com/ahfuzhang/p/10998489.html