> /usr/bin/ld: /usr/local/lib/liblapack.a(sgeev.o): relocation R_X86_64_32 > against `.rodata' can not be used when making a shared object; recompile > with -fPIC > /usr/local/lib/liblapack.a: could not read symbols: Bad value
This means that your local blas and lapack libraries in /usr/local/lib are compiled as an archive without support for "position independent code" (-fpic). You have to recompile blas/lapack at least with -fpic, or even better, as a shared library (such that you end up with libblas.so / liblapack.so). (To turn off the creation of shared libraries in deal.II via -DBUILD_SHARED_LIBS=OFF is not recommended.) -- The deal.II project is located at http://www.dealii.org/ For mailing list/forum options, see https://groups.google.com/d/forum/dealii?hl=en --- You received this message because you are subscribed to the Google Groups "deal.II User Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to dealii+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.