- Timestamp:
- Oct 1, 2017, 3:27:07 AM (7 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master
- Children:
- 16c12a1, 2a4ce6d
- Parents:
- 2f02d51 (diff), 873646d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- scripts
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
scripts/build_emscripten
r2f02d51 r5b194f0 1 #! /bin/ sh1 #! /bin/bash 2 2 3 3 function checkprog() { … … 10 10 11 11 # clean 12 emmake./waf distclean12 ./waf distclean 13 13 14 14 # configure 15 emconfigure ./waf configure -- prefix=$EMSCRIPTEN/system/local/ --with-target-platform emscripten15 emconfigure ./waf configure --with-target-platform emscripten $* 16 16 17 17 # build 18 emmake ./waf --testcmd="node %s" 19 20 # intall 21 #emmake ./waf install 18 emmake ./waf build -
scripts/get_waf.sh
r2f02d51 r5b194f0 1 #! /bin/ sh1 #! /bin/bash 2 2 3 3 set -e 4 4 set -x 5 5 6 WAFURL=https://waf.io/waf-2.0.1 6 WAFVERSION=2.0.1 7 WAFTARBALL=waf-$WAFVERSION.tar.bz2 8 WAFURL=https://waf.io/$WAFTARBALL 7 9 8 ( which wget > /dev/null && wget -qO waf $WAFURL ) || ( which curl > /dev/null && curl $WAFURL > waf ) 10 WAFBUILDDIR=`mktemp -d` 9 11 10 chmod +x waf 12 function cleanup () { 13 rm -rf $WAFBUILDDIR 14 } 15 16 trap cleanup SIGINT SIGTERM 17 18 function buildwaf () { 19 pushd $WAFBUILDDIR 20 21 ( which wget > /dev/null && wget -qO $WAFTARBALL $WAFURL ) || ( which curl > /dev/null && curl $WAFURL > $WAFTARBALL ) 22 23 tar xf $WAFTARBALL 24 pushd waf-$WAFVERSION 25 NOCLIMB=1 python waf-light --tools=c_emscripten,syms $* 26 27 popd 28 popd 29 30 cp -prv $WAFBUILDDIR/waf-$WAFVERSION/waf $PWD 31 32 chmod +x waf 33 } 34 35 buildwaf 36 37 cleanup
Note: See TracChangeset
for help on using the changeset viewer.