Changeset 825
- Timestamp:
- Dec 21, 2007 3:12:43 PM (13 years ago)
- Location:
- ThirdParty/Mumps/trunk
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
ThirdParty/Mumps/trunk/INSTALL.MUMPS
r323 r825 26 26 beginning of the get.Mumps script. 27 27 28 29 28 If you don't have wget available, follow those instructions: 30 29 … … 43 42 44 43 mv MUMPS_4.7.3 MUMPS 44 45 ********************************************************************** 46 Additional instructions for building with Msys and MinGW 47 ********************************************************************** 48 49 If you are trying to build Mumps in Microsoft Windows using the MSys shell 50 environment, you will first need to install the MinGW gcc 4.2 technology 51 preview in order obtain a Fortran 95 compliant Fortran compiler. GCC 4.2 is 52 available here: 53 54 http://sourceforge.net/project/showfiles.php?group_id=2435&package_id=241304 55 56 You need to install the gcc-core, gcc-g++, and gcc-gfortran packages. After 57 installing these packages, you will also need to patch Mumps by executing the 58 command 59 60 patch -p0 < mumps.gcc.patch 61 62 in this directory. 63 64 Note the executable names in the gcc packages have the suffix "sjlj" and will 65 not be found by the configuration script of whatever project you are trying to 66 build, so you must either (1) change their names by deleting the suffix 67 (beware that if you do this, you may create a conflict with other version of 68 gcc already installed) or (2) configure with 69 70 ./configure CC=gcc-sjlj CXX=g++-sjlj F77=gfortran-sjlj 71 -
ThirdParty/Mumps/trunk/get.Mumps
r525 r825 6 6 7 7 set -e 8 9 if test "$1" == '-patch'; then 10 uname=`uname` 11 case "$uname" in 12 Msys | CYGWIN*) 13 patch=yes 14 ;; 15 esac 16 fi 8 17 9 18 wgetcmd=wget … … 37 46 rm MUMPS_${mumps_ver}.tar 38 47 39 #echo "Applying a patch for version 4.6.4" 40 #sed -e 's/ id%DKEEP(1) = ZERO/ id%DKEEP(1) = -1.0/' MUMPS_${mumps_ver}/src/dmumps_part5.F > bla 41 #mv bla MUMPS_${mumps_ver}/src/dmumps_part5.F 48 mv MUMPS_${mumps_ver} MUMPS 42 49 43 mv MUMPS_${mumps_ver} MUMPS 50 if test "$patch" = yes; then 51 echo "Applying a patch for version 4.7.3" 52 patch -p0 < mumps_4.7.3.Win.patch 53 fi 44 54 45 55 echo " "
Note: See TracChangeset
for help on using the changeset viewer.