From 58d228e93a06117a812aa4afb71f115778983519 Mon Sep 17 00:00:00 2001
From: hartmann
deal.II works without problems with shared
- libraries on this platform, if you list the paths
- $D/base/lib
, $D/lac/lib
, and
- $D/deal.II/lib
in your $LD_LIBRARY_PATH
+ libraries on this platform, if you list the path
+ $D/lib
in your $LD_LIBRARY_PATH
environment variable, where $D
is the path to your
installation of the deal.II library. The
necessary actions can be done with the commands
for csh-like shells, or by
- setenv LD_LIBRARY_PATH $D/base/lib:$D/lac/lib:$D/deal.II/lib:$LD_LIBRARY_PATH
+ setenv LD_LIBRARY_PATH $D/lib:$LD_LIBRARY_PATH
if you use the ``bash'' shell. Please substitute
- export LD_LIBRARY_PATH=$D/base/lib:$D/lac/lib:$D/deal.II/lib:$LD_LIBRARY_PATH
+ export LD_LIBRARY_PATH=$D/lib:$LD_LIBRARY_PATH
$D
@@ -61,6 +60,25 @@
find out how to do that).
+ When compiling deal.II with the MIPSpro + compiler in 64-bit mode it is necessary to +
+
+ setenv CXXFLAGS -64
+ setenv LDFLAGS -64
+
+
+ before calling ./configure
.
+ Furthermore, the $LD_LIBRARY64_PATH
(instead of the
+ $LD_LIBRARY_PATH
) environment variable needs to be set
+
+
+ setenv LD_LIBRARY64_PATH $D/lib:$LD_LIBRARY64_PATH
+
+
+ On ``bash'' shells use the export
command accordingly.
+