Changeset 323
- Timestamp:
- May 30, 2007 7:00:51 PM (14 years ago)
- Location:
- ThirdParty/Mumps/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
ThirdParty/Mumps/trunk/INSTALL.MUMPS
r279 r323 6 6 7 7 Home page: http://graal.ens-lyon.fr/MUMPS/ 8 9 and make sure you read the usage conditions at 10 11 http://graal.ens-lyon.fr/MUMPS/avail.html 8 12 9 13 ********************************************************************** … … 16 20 by executing the included script `get.Mumps' in this directory. 17 21 18 Otherwise, follow those instructions: 22 Note, however, that the script might not be looking for the most recent 23 version of Mumps, and it might fail if it tries to download an outdated 24 one. In that case, please check the Mumps home page for the most recent 25 version number and change the definition of the mumps_ver variable at the 26 beginning of the get.Mumps script. 19 27 20 You may download21 28 22 http://graal.ens-lyon.fr/MUMPS/MUMPS_4.6.4.tar.gz 29 If you don't have wget available, follow those instructions: 30 31 Check the Mumps home page for the most recent version number (say, 4.7.3). 32 You may then download 33 34 http://graal.ens-lyon.fr/MUMPS/MUMPS_4.7.3.tar.gz (or try 35 http://mumps.enseeiht.fr/MUMPS_4.7.3.tar.gz if first URL doesn't work) 23 36 24 37 and unpack it in this directory: 25 38 26 gunzip MUMPS_4. 6.4.tar.gz27 tar xf MUMPS_4. 6.4.tar39 gunzip MUMPS_4.7.3.tar.gz 40 tar xf MUMPS_4.7.3.tar 28 41 29 You will need to change line 4069 in the file 30 MUMPS_4.6.4/src/dmumps_part5.F from 42 Finally, rename the MUMPS_4.7.3 directory just to be MUMPS: 31 43 32 id%DKEEP(1) = ZERO 33 34 to 35 36 id%DKEEP(1) = -1.0 37 38 Finally, rename the MUMPS_4.6.4 directory just to be MUMPS: 39 40 mv MUMPS_4.6.4 MUMPS 44 mv MUMPS_4.7.3 MUMPS -
ThirdParty/Mumps/trunk/get.Mumps
r312 r323 1 1 #!/bin/sh 2 3 mumps_ver=4.7.3 2 4 3 5 wgetcount=`which wget 2>/dev/null | wc -w` … … 12 14 13 15 rm -f MUMPS*.tgz 14 15 mumps_ver=4.716 16 17 17 echo "Downloading the source code from ..." … … 28 28 rm MUMPS_${mumps_ver}.tar 29 29 30 echo "Applying a patch for version 4.6.4"31 sed -e 's/ id%DKEEP(1) = ZERO/ id%DKEEP(1) = -1.0/' MUMPS_${mumps_ver}/src/dmumps_part5.F > bla32 mv bla MUMPS_${mumps_ver}/src/dmumps_part5.F30 #echo "Applying a patch for version 4.6.4" 31 #sed -e 's/ id%DKEEP(1) = ZERO/ id%DKEEP(1) = -1.0/' MUMPS_${mumps_ver}/src/dmumps_part5.F > bla 32 #mv bla MUMPS_${mumps_ver}/src/dmumps_part5.F 33 33 34 34 mv MUMPS_${mumps_ver} MUMPS … … 38 38 echo " " 39 39 40 echo " " 41 echo "Verify that there are no error message in the output above."
Note: See TracChangeset
for help on using the changeset viewer.