Changeset 1535
- Timestamp:
- 08/04/09 08:55:43 (16 years ago)
- Location:
- issm/trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/cron/configs/linux64_morlighem
r1530 r1535 16 16 17 17 #external pakages to be installed 18 E P_LIST="mpich2 petsc metis triangle"18 EXTERNALPACKAGES="mpich2 petsc metis triangle" 19 19 20 20 #number of cpus -
issm/trunk/cron/configs/macosx32_seroussi
r1530 r1535 15 15 16 16 #external pakages to be installed 17 E P_LIST="mpich2 petsc metis triangle"17 EXTERNALPACKAGES="mpich2 petsc metis triangle" 18 18 19 19 #number of cpus -
issm/trunk/cron/nightlyrun.sh
r1531 r1535 9 9 else 10 10 echo "no config file specified. Exiting..." 11 exit 1 11 12 fi 12 13 … … 29 30 cd $ISSM_DIR/etc 30 31 31 #modify MATLAB_PATH ( /usr/... -> \/usr\/...) 32 echo $MATLAB_PATH | sed 's/\//\\\//g' > MATLAB_PATH2 33 MATLAB_PATH2=`cat MATLAB_PATH2` 34 rm MATLAB_PATH2 32 #source environment variables with new matlab path 33 source environment.sh MATLAB_DIR=$MATLAB_PATH 35 34 36 #modify MATLAB_DIR in environment_variables.sh 37 cat environment_variables.sh | sed -e "s/C:\/MATLAB\/R2009a\//$MATLAB_PATH2/g" > environment_variables.sh.bak 38 mv environment_variables.sh.bak environment_variables.sh 39 40 #Create cluster.rc 35 #create simpler cluster.rc file, with only the cluster we are interested in. 41 36 cat << END > cluster.rc 42 37 begin … … 46 41 end 47 42 END 48 source $ISSM_DIR/etc/environment.sh49 43 50 44 #2: install some required external packages 51 45 cd $ISSM_DIR/externalpackages 52 for EP in $EP_LIST46 for ep in $EXTERNALPACKAGES 53 47 do 54 cd $ EP48 cd $ep 55 49 cp configs/$OS/* . 56 50 ./install.sh $NUMCPUS -
issm/trunk/etc/environment.csh
r1467 r1535 2 2 3 3 source $ISSM_DIR/etc/environment_variables.csh 4 5 #Do we have any command line arguments? (such as MATLAB_DIR=otherdirthandefault), source them before exporting the variables 6 #to environment. 7 foreach i ($@) 8 eval $i 9 end 4 10 5 11 #MATLAB -
issm/trunk/etc/environment.sh
r1467 r1535 1 1 #ISSM_DIR and ISSM_ARCH should have been defined already in your shell settings file (.bashrc, .cshrc, etc ...) 2 2 source $ISSM_DIR/etc/environment_variables.sh 3 4 #Do we have any command line arguments? (such as MATLAB_DIR=otherdirthandefault), source them before exporting the variables 5 #to environment. 6 for i in $@ 7 do 8 eval $i 9 done 3 10 4 11 #MATLAB -
issm/trunk/etc/environment_variables.sh
r1532 r1535 4 4 # 5 5 # 6 7 6 8 7 #MATLAB … … 60 59 YAMS_DIR="$ISSM_DIR/externalpackages/yams/install" 61 60 62 #TEX2IM63 TEX2IM_DIR="$ISSM_DIR/externalpackages/tex2im/install"64 65 66 67 68 69 61 #Development packages 70 62 #automake … … 82 74 #sdk 83 75 SDK_DIR="C:/MicrosoftVisualStudio 9.0/Microsoft Visual C++ 2008 Express Edition with SP1 - ENU" 84
Note:
See TracChangeset
for help on using the changeset viewer.