Dear deal.II users, I recently tried to install deal.II. However, when I run make test, all tests fails because of the following message
/home/gudrun/davidkl/Documents/dealii/build/tests/quick_tests/step.debug: symbol lookup error: /lib64/libgsl.so.23: undefined symbol: cblas_ctrmv In detail.log produces by cmake it looks like libgslcblas is correctly found # DEAL_II_WITH_GSL set up with external dependencies # GSL_VERSION = 2.4 # GSL_INCLUDE_DIRS = /usr/include # GSL_USER_INCLUDE_DIRS = /usr/include # GSL_LIBRARIES = /usr/lib64/libgsl.so;/usr/lib64/libgslcblas.so Furthermore, when I run the ldd command on the produced shared library file something strange happens ldd lib/libdeal_II.g.so | grep gsl libgsl.so.23 => /lib64/libgsl.so.23 (0x00007f6d7eb4f000) Hence, there is no libgslcblas linked. Should that be linked? The other strange thing is that in detail.log it says that it uses /usr/lib64/libgsl.so, but when I check which library it actually linked to it is /lib64/libgsl.so.23, which is not in the same location as the one printed in detail.log. On my system there is one GSL version in /lib64 (which is a shared folder between many nodes), and one version in /usr/lib64, which is local on one node. It appears like the GSL library that is used is not the one stored in GSL_LIBRARIIES and that libgslcblas is not linked. Has anyone encountered similar problems? Thanks in advance for any help, David -- 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 [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/dealii/ba7f7cf5-e8f8-45e6-bf75-e8e227b5b661%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
