当前位置:   article > 正文

undefined reference to `fftw_plan_dft_1d'

undefined reference to `fftw_plan_dft_1d

我明明在用户目录下重新安装了fftw3库并且指定了库路径和头文件路径,指定了链接库名,为何还发生这种错误!
编译命令行如下

g++ -I/usr/include -L/usr/lib -lfftw3 -lm test_fftw.cpp
  • 1

报错如下:

/tmp/ccFsDL1n.o: In function `main':
fftwtest.c:(.text+0x1d): undefined reference to `fftw_malloc'
fftwtest.c:(.text+0x32): undefined reference to `fftw_malloc'
fftwtest.c:(.text+0x56): undefined reference to `fftw_plan_dft_1d'
fftwtest.c:(.text+0x66): undefined reference to `fftw_execute'
fftwtest.c:(.text+0x72): undefined reference to `fftw_destroy_plan'
fftwtest.c:(.text+0x7e): undefined reference to `fftw_free'
fftwtest.c:(.text+0x8a): undefined reference to `fftw_free'
collect2: ld returned 1 exit status
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

文件获取:test_fftw.cpp

解决办法:(将链接选项 -lxxx 移动到源文件后面)

g++  test_fftw.cpp -lfftw3 -lm
  • 1

问题解决!!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/105148
推荐阅读
相关标签
  

闽ICP备14008679号