Changeset 1159
- Timestamp:
- Aug 27, 2008 5:15:09 AM (13 years ago)
- Location:
- ThirdParty/Mumps/trunk
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
ThirdParty/Mumps/trunk/INSTALL.MUMPS
r1154 r1159 48 48 49 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 technology51 preview in order obtain a Fortran 95 compliant Fortran compiler. GCC 4.2 is 52 available here:50 environment and gnu fortran compilers, you will first need to install the 51 MinGW gcc 4.2 technology preview in order obtain a Fortran 95 compliant 52 Fortran compiler. GCC 4.2 is available here: 53 53 54 54 http://sourceforge.net/project/showfiles.php?group_id=2435&package_id=241304 55 55 56 /* 56 57 You need to install the gcc-core, gcc-g++, and gcc-gfortran packages. After 57 58 installing these packages, you will also need to patch Mumps by executing the … … 64 65 NOTE: THE ABOVE PATCH WAS FOR ONLY FOR THE 4.7.3 VERSION, WE DON'T HAVE A 65 66 PATCH FOR A LATER VERSION YET (MAYBE IT IS NOT REQUIRED)!!! 67 */ 66 68 67 69 Note the executable names in the gcc packages have the suffix "sjlj" and will -
ThirdParty/Mumps/trunk/get.Mumps
r1154 r1159 6 6 7 7 set -e 8 9 uname=`uname`10 case "$uname" in11 MINGW* | CYGWIN*)12 patch=yes13 ;;14 esac15 8 16 9 wgetcmd=wget … … 47 40 mv MUMPS_${mumps_ver} MUMPS 48 41 49 if test "$patch" = yes; then 50 echo "Applying a patch for version 4.7.3" 51 patch -p0 < mumps_4.7.3.Win.patch 52 fi 42 #uname=`uname` 43 #case "$uname" in 44 # MINGW* | CYGWIN*) 45 # echo "Applying a patch for version 4.7.3" 46 # patch -p0 < mumps_4.7.3.Win.patch 47 # ;; 48 #esac 53 49 54 50 echo " "
Note: See TracChangeset
for help on using the changeset viewer.