tree-sitter/script/fetch-emscripten

35 lines
603 B
Text
Raw Normal View History

#!/bin/bash
set -e
2020-05-12 16:18:20 -07:00
EMSCRIPTEN_VERSION=1.39.15
mkdir -p target
EMSDK_DIR="./target/emsdk"
(
if [ ! -f "$EMSDK_DIR/emsdk" ]; then
echo 'Downloading emscripten SDK...'
git clone https://github.com/emscripten-core/emsdk.git $EMSDK_DIR
fi
cd $EMSDK_DIR
echo 'Updating emscripten SDK...'
git reset --hard
git pull
./emsdk list
echo 'Installing latest emscripten...'
./emsdk install $EMSCRIPTEN_VERSION
echo 'Activating latest emscripten...'
./emsdk activate $EMSCRIPTEN_VERSION
) >&2
(
source "$EMSDK_DIR/emsdk_env.sh" > /dev/null
emcc --version >&2
declare -px
)