Changeset 21928
- Timestamp:
- 08/09/17 18:25:47 (8 years ago)
- Location:
- issm/trunk-jpl/externalpackages
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/emscripten/install.sh
r21926 r21928 12 12 mv emsdk_portable src 13 13 14 cd src 14 cd src 15 15 16 16 export CXX=g++ … … 21 21 ./emsdk activate latest 22 22 23 cd ../ 24 mv src install 25 cd install 26 27 source ./emsdk_env.sh 23 #Related to moving the install path after installation - However, not safe to install in dir named "install" since a failure would not be noticed by jenkins when triggering 24 #Not reliable - when executed in subshell without sourcing the install file, this has no effect. Safer to explicitly source for each dependent externalpackage. 25 source emsdk_env.sh -
issm/trunk-jpl/externalpackages/gsl/install-javascript.sh
r20997 r21928 21 21 export CC=emcc 22 22 export CXX=em++ 23 #Source emscripten to ensure emcc/em++ compiler are in env 24 source $ISSM_DIR/externalpackages/emscripten/src/emsdk_env.sh 23 25 24 26 # Issue with variadic function signatures. -
issm/trunk-jpl/externalpackages/triangle/install-javascript.sh
r19699 r21928 8 8 #Download from ISSM server 9 9 $ISSM_DIR/scripts/DownloadExternalPackage.py 'http://issm.jpl.nasa.gov/files/externalpackages/triangle.zip' 'triangle.zip' 10 11 #Source emscripten to ensure emcc/em++ compiler are in env 12 source $ISSM_DIR/externalpackages/emscripten/src/emsdk_env.sh 10 13 11 14 #Untar
Note:
See TracChangeset
for help on using the changeset viewer.