Last change
on this file since 21341 was 21341, checked in by Mathieu Morlighem, 8 years ago |
merged trunk-jpl and trunk for revision 21337
|
-
Property svn:executable
set to
*
|
File size:
415 bytes
|
Line | |
---|
1 | #!/bin/bash
|
---|
2 | set -eu
|
---|
3 |
|
---|
4 | #Some cleanup
|
---|
5 | rm -rf src
|
---|
6 |
|
---|
7 | #Download from ISSM server
|
---|
8 | $ISSM_DIR/scripts/DownloadExternalPackage.py 'http://issm.jpl.nasa.gov/files/externalpackages/emsdk-portable.tar.gz' 'emsdk-portable.tar.gz'
|
---|
9 |
|
---|
10 | #Untar and move petsc to install directory
|
---|
11 | tar -zxvf emsdk-portable.tar.gz
|
---|
12 | mv emsdk_portable src
|
---|
13 |
|
---|
14 | cd src
|
---|
15 |
|
---|
16 | export CXX=g++
|
---|
17 | export CC=gcc
|
---|
18 |
|
---|
19 | ./emsdk update
|
---|
20 | ./emsdk install latest
|
---|
21 | ./emsdk activate latest
|
---|
Note:
See
TracBrowser
for help on using the repository browser.