From 58d228e93a06117a812aa4afb71f115778983519 Mon Sep 17 00:00:00 2001 From: hartmann Date: Mon, 8 Mar 2004 13:16:45 +0000 Subject: [PATCH] Fix docu on LD_LIBRARY_PATH. Add LD_LIBRARY64_PATH for 64-bit compilation. git-svn-id: https://svn.dealii.org/trunk@8673 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/doc/platforms/sgi-irix.html | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/deal.II/doc/platforms/sgi-irix.html b/deal.II/doc/platforms/sgi-irix.html index bc206671fd..10daabe83a 100644 --- a/deal.II/doc/platforms/sgi-irix.html +++ b/deal.II/doc/platforms/sgi-irix.html @@ -16,21 +16,20 @@

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

     
-      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
     
     
for csh-like shells, or by
     
-      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
     
     
if you use the ``bash'' shell. Please substitute $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. +

-- 2.39.5