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
After installing all required dependencies on Ubuntu 18.04, including autoconf, libtool and FFTW using the instructions to cofigure it, Ladspa compilation stops on make. In the terminal I get: /usr/bin/x86_64-linux-gnu-ld: /usr/local/lib/libfftw3f.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 /usr/bin/x86_64-linux-gnu-ld: final link failed: Bad value collect2: error: ld returned 1 exit status Makefile:1104: recipe for target 'mbeq_1197.la' failed make[2]: *** [mbeq_1197.la] Error 1 make[2]: Verzeichnis „/media/luiz/Volume/Downloads/Audacity Plugins/ladspa-0.4.17“ wird verlassen Makefile:1391: recipe for target 'all-recursive' failed make[1]: *** [all-recursive] Error 1 make[1]: Verzeichnis „/media/luiz/Volume/Downloads/Audacity Plugins/ladspa-0.4.17“ wird verlassen Makefile:871: recipe for target 'all' failed make: *** [all] Error 2
The text was updated successfully, but these errors were encountered:
It's trying to link against a static version of FFTW, rather than the shared version. If you built fftw from source yourself (you shouldn't need to do this, since Ubuntu has a perfectly good version!) then make sure you specify --enable-shared in its configure options.
After installing all required dependencies on Ubuntu 18.04, including autoconf, libtool and FFTW using the instructions to cofigure it, Ladspa compilation stops on make. In the terminal I get:
/usr/bin/x86_64-linux-gnu-ld: /usr/local/lib/libfftw3f.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
/usr/bin/x86_64-linux-gnu-ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
Makefile:1104: recipe for target 'mbeq_1197.la' failed
make[2]: *** [mbeq_1197.la] Error 1
make[2]: Verzeichnis „/media/luiz/Volume/Downloads/Audacity Plugins/ladspa-0.4.17“ wird verlassen
Makefile:1391: recipe for target 'all-recursive' failed
make[1]: *** [all-recursive] Error 1
make[1]: Verzeichnis „/media/luiz/Volume/Downloads/Audacity Plugins/ladspa-0.4.17“ wird verlassen
Makefile:871: recipe for target 'all' failed
make: *** [all] Error 2
The text was updated successfully, but these errors were encountered: