Changeset 22821
- Timestamp:
- 05/31/18 10:42:48 (7 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 3 deleted
- 11 edited
- 4 copied
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl
- Property svn:mergeinfo changed
/issm/trunk merged: 22763,22765-22768,22771-22776,22781,22783,22785,22788,22790,22792
- Property svn:mergeinfo changed
-
issm/trunk-jpl/externalpackages/mpich/install-3.2-macosx64-static.sh
r21692 r22821 23 23 cd src 24 24 ./configure \ 25 --prefix="$ISSM_DIR/externalpackages/mpich/install" 25 --prefix="$ISSM_DIR/externalpackages/mpich/install" \ 26 --disable-shared 26 27 27 28 #Compile mpich (this new version supports parallel make) -
issm/trunk-jpl/jenkins/linux64_ross_static
r21960 r22821 23 23 --with-metis-dir=$ISSM_DIR/externalpackages/petsc/install \ 24 24 --with-m1qn3-dir=$ISSM_DIR/externalpackages/m1qn3/install \ 25 --with-math77-dir=$ISSM_DIR/externalpackages/math77/install \ 25 26 --with-fortran-lib="-L/usr/lib/gcc/x86_64-linux-gnu/4.9/ -lgfortran" \ 26 27 --with-numthreads=4' … … 41 42 petsc install-3.7-linux64-static.sh 42 43 triangle install-linux64.sh 44 math77 install.sh 45 gmsh install-static.sh 43 46 shell2junit install.sh" 44 47 -
issm/trunk-jpl/jenkins/macosx_pine-island_static
r22762 r22821 42 42 triangle install-macosx64.sh 43 43 math77 install.sh 44 gmsh install .sh44 gmsh install-static.sh 45 45 shell2junit install.sh" 46 46 47 #for SLR we need gmsh to mesh, math77, and gmt (which itself needs gdal and netcdf...) 47 48 #-----------------# 48 49 # 4: test options # -
issm/trunk-jpl/packagers/macosx/package.sh
r22757 r22821 7 7 cp ../externalpackages/mpich/install/bin/mpiexec . 8 8 cp ../externalpackages/mpich/install/bin/hydra_pmi_proxy . 9 echo "move gmsh to bin" 10 if [ -f ../externalpackages/gmsh/install/gmsh ]; then 11 cp ../externalpackages/gmsh/install/gmsh . 12 else 13 echo "gmsh not found" 14 fi 9 15 10 16 #Check that test101 runs … … 20 26 fi 21 27 22 #Package using the Package Maker from OSX, driven by command line.23 28 tarball_name='issm-mac-static_build.tar.gz' 24 29 … … 31 36 rm -rf trunk 32 37 mkdir trunk 33 #Need script to download data34 38 cp -rf bin lib test examples scripts trunk/ 35 39 tar -czf $tarball_name trunk -
issm/trunk-jpl/packagers/ubuntu/package.sh
r22757 r22821 7 7 cp ../externalpackages/mpich/install/bin/mpiexec . 8 8 cp ../externalpackages/mpich/install/bin/hydra_pmi_proxy . 9 echo "move gmsh to bin" 10 if [ -f ../externalpackages/gmsh/install/gmsh ]; then 11 cp ../externalpackages/gmsh/install/gmsh . 12 else 13 echo "gmsh not found" 14 fi 9 15 10 16 #Check that test101 runs … … 30 36 rm -rf trunk 31 37 mkdir trunk 32 cp -rf bin lib test examples trunk/38 cp -rf bin lib test examples scripts trunk/ 33 39 tar -czf $tarball_name trunk 34 40 ls -lah $tarball_name -
issm/trunk-jpl/src
- Property svn:mergeinfo changed
/issm/trunk/src merged: 22771,22781,22790,22792
- Property svn:mergeinfo changed
-
issm/trunk-jpl/src/m/coordsystems/gmtmask.m
r21942 r22821 41 41 end 42 42 43 %Find path to gmt, list all possible known paths to gmt (you may need to add yours to the list) 44 paths = {[issmdir() '/bin/gmt'],[issmdir() '/externalpackages/gmt/install/bin/gmt'],'/Applications/GMT-5.4.3.app/Contents/Resources/bin/gmt'}; 45 gmtpath = ''; 46 for i=paths 47 if exist(i{1},'file'), 48 gmtpath = i{1}; 49 break; 50 end 51 end 52 if isempty(gmtpath), 53 error('gmt not found, make sure it is properly installed, or add its path to this file (line 44)'); 54 end 55 43 56 %figure out which vertices are on the ocean, which one on the continent: 44 [status,result] = system([ 'gmtgmtselect ./' filename_all ' -h0 -Df -R0/360/-90/90 -A0 -JQ180/200 -Nk/s/s/k/s > ./' filename_oce]);57 [status,result] = system([gmtpath ' gmtselect ./' filename_all ' -h0 -Df -R0/360/-90/90 -A0 -JQ180/200 -Nk/s/s/k/s > ./' filename_oce]); 45 58 if status~=0, 46 59 error(result); -
issm/trunk-jpl/src/m/coordsystems/gmtmaskparallel.m
r20129 r22821 23 23 end 24 24 25 %Find path to gmt, list all possible known paths to gmt (you may need to add yours to the list) 26 paths = {[issmdir() '/bin/gmt'],[issmdir() '/externalpackages/gmt/install/bin/gmt'],'/Applications/GMT-5.4.3.app/Contents/Resources/bin/gmt'}; 27 gmtpath = ''; 28 for i=paths 29 if exist(i{1},'file'), 30 gmtpath = i{1}; 31 break; 32 end 33 end 34 if isempty(gmtpath), 35 error('gmt not found, make sure it is properly installed, or add its path to this file (line 26)'); 36 end 37 25 38 %Build xjobs script: 26 39 fid=fopen('xjobs.script','w'); 27 40 for i=1:length(nnv)-1, 28 fprintf(fid,' gmt gmtselect ./all_vertices%i.txt -h0 -Df -R0/360/-90/90 -A0 -JQ180/200 -Nk/s/s/k/s > ./oce_vertices%i.txt\n',i,i);41 fprintf(fid,'%s gmtselect ./all_vertices%i.txt -h0 -Df -R0/360/-90/90 -A0 -JQ180/200 -Nk/s/s/k/s > ./oce_vertices%i.txt\n',gmtpath,i,i); 29 42 end 30 43 fclose(fid); -
issm/trunk-jpl/src/m/mesh/planet/gmsh/gmshplanet.m
r22807 r22821 107 107 for i=paths 108 108 if exist(i{1},'file'), 109 gmshpath = i{1}; 109 gmshpath = i{1}; 110 break; 110 111 end 111 112 end -
issm/trunk-jpl/test
- Property svn:mergeinfo changed
/issm/trunk/test merged: 22785
- Property svn:mergeinfo changed
Note:
See TracChangeset
for help on using the changeset viewer.