Changeset 21926
- Timestamp:
- 08/09/17 17:34:24 (8 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/emscripten/install.sh
r20870 r21926 20 20 ./emsdk install latest 21 21 ./emsdk activate latest 22 23 cd ../ 24 mv src install 25 cd install 26 27 source ./emsdk_env.sh -
issm/trunk-jpl/jenkins/jenkins.sh
r21869 r21926 30 30 MATLAB_TEST=0 31 31 PYTHON_TEST=0 32 JAVASCRIPT_TEST=0 32 33 33 34 #source configuration script … … 141 142 142 143 #install if requested or if previous install has not been successful 143 if [ "$ISSM_EXTERNALPACKAGES" == "yes" ] || [ ! -d ./install ] || [ ! "$(ls -A ./install)" ]; then144 if [ "$ISSM_EXTERNALPACKAGES" == "yes" ] || [ ! -d ./install -a ! -d ./install-javascript ] || ([ -d ./install ] && [ ! "$(ls -A ./install)" ]) || ([ -d ./install-javascript ] && [ ! "$(ls -A ./install-javascript)" ]); then 144 145 echo "======================================================"; 145 146 echo " Installing $PACKAGENAME "; … … 181 182 fi 182 183 184 #Set CXX/CC flags for JS runs after exnteralpackages to avoid conflicts during their compilation 185 CXX_PREVIOUS=$CXX 186 CC_PREVIOUS=$CC 187 if [ $JAVASCRIPT_TEST -eq 1 ]; then 188 export CXX=em++ 189 export CC=emcc 190 fi 191 183 192 source $ISSM_DIR/etc/environment.sh 184 193 185 if [ "$OS" == "win" ] 186 then 194 if [ "$OS" == "win" ]; then 187 195 echo " == WINDOWS ENVIRONMENT DETECTED ==" 188 196 source $ISSM_DIR/externalpackages/windows/windows_environment.sh … … 238 246 #}}} 239 247 248 #Restore CXX/CC to their previous values 249 export CXX=$CXX_PREVIOUS 250 export CC=$CC_PREVIOUS 251 240 252 #matlab tests 241 253 # {{{ -
issm/trunk-jpl/jenkins/linux64_ross_javascript
r21922 r21926 24 24 25 25 #List of external pakages to be installed and their installation scripts 26 EXTERNALPACKAGES="gsl install-javascript.sh 26 EXTERNALPACKAGES="autotools install.sh 27 cmake install.sh 28 emscripten install.sh 29 gsl install-javascript.sh 27 30 triangle install-javascript.sh 28 shell2junit install.sh 29 emscripten install.sh" 31 shell2junit install.sh" 30 32 31 33 #-----------------# -
issm/trunk-jpl/src/m/Makefile.am
r21530 r21926 135 135 ${ISSM_DIR}/src/m/io/savemodel.js \ 136 136 ${ISSM_DIR}/src/m/io/loadmodel.js \ 137 ${ISSM_DIR}/src/m/io/saveAsFile.js \138 137 ${ISSM_DIR}/src/m/io/writetofile.js \ 139 ${ISSM_DIR}/src/m/io/download.js \140 138 ${ISSM_DIR}/src/m/io/writetofile.js \ 141 139 ${ISSM_DIR}/src/m/materials/paterson.js \
Note:
See TracChangeset
for help on using the changeset viewer.