diff options
author | chriseth <c@ethdev.com> | 2016-08-02 17:35:08 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-08-02 17:35:08 +0800 |
commit | 7da7c3208f2a718e090851dc89d5b27d29ac0078 (patch) | |
tree | c38b7afb254e51f6f10b5327e87340eccf3c909c /scripts/travis-emscripten | |
parent | 5a4d57a28f5f7bbc049afdd6259da896252c2053 (diff) | |
download | dexon-solidity-7da7c3208f2a718e090851dc89d5b27d29ac0078.tar.gz dexon-solidity-7da7c3208f2a718e090851dc89d5b27d29ac0078.tar.zst dexon-solidity-7da7c3208f2a718e090851dc89d5b27d29ac0078.zip |
Do not explicitly specify emscripten compiler.
Diffstat (limited to 'scripts/travis-emscripten')
-rwxr-xr-x | scripts/travis-emscripten/build_emscripten.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/travis-emscripten/build_emscripten.sh b/scripts/travis-emscripten/build_emscripten.sh index 6d244a0f..2b5e409f 100755 --- a/scripts/travis-emscripten/build_emscripten.sh +++ b/scripts/travis-emscripten/build_emscripten.sh @@ -90,8 +90,6 @@ cd build emcmake cmake \ -DCMAKE_BUILD_TYPE=Release \ -DEMSCRIPTEN=1 \ - -DCMAKE_CXX_COMPILER=em++ \ - -DCMAKE_C_COMPILER=emcc \ -DBoost_FOUND=1 \ -DBoost_USE_STATIC_LIBS=1 \ -DBoost_USE_STATIC_RUNTIME=1 \ @@ -120,7 +118,7 @@ emcmake cmake \ -DCRYPTOPP_INCLUDE_DIR="$WORKSPACE"/cryptopp/src/ \ -DDev_DEVCORE_LIBRARY="$WORKSPACE"/solidity/build/libdevcore/libdevcore.a \ -DEth_EVMASM_LIBRARY="$WORKSPACE"/solidity/build/libevmasm/libevmasm.a \ - -DETHASHCL=0 -DEVMJIT=0 -DETH_STATIC=1 -DSOLIDITY=1 -DFATDB=0 -DTESTS=0 -DTOOLS=0 \ + -DETH_STATIC=1 -DTESTS=0 \ .. emmake make -j 4 |