You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Building the project while following the instruction of the README, I got
/usr/bin/ld: //usr/local/lib/libfftw3.a(assert.o): relocation R_X86_64_PC32 against symbol `stdout@@GLIBC_2.2.5' can not be used when making a shared object; recompile with -fPIC
This problems comes from fftw3 not being compiled with -fPIC. So FFTW3 has to be compiled with ./configure --enable-shared
It would be helpful when this is checked in the configure script or mentioned in the README