- `--embeddded` mode is the now the default - embedded cache and ports is also the default - emsdk now fully polulates the cache by default so no need to do that. - always "activate" the SDK avoiding that need things to work without that. - avoid making extra symlinks. - remove python2
18 lines
249 B
Bash
Executable File
18 lines
249 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
which asm2wasm
|
|
which llvm-ar
|
|
which emsdk
|
|
node --version
|
|
npm --version
|
|
python3 --version
|
|
pip3 --version
|
|
em++ --version
|
|
emcc --version
|
|
java -version
|
|
cmake --version
|
|
|
|
# cleanup after test
|
|
find ${EMSDK} -name "*.pyc" -exec rm {} \;
|