You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 24, 2023. It is now read-only.
Elias Ku edited this page Jan 7, 2022
·
2 revisions
ekx cli requires Emscripten SDK to build Web Target.
By default ekx cli try search Emscripten SDK in path ~/dev/emsdk, but you could override that with system environment variable EMSDK.
In case if you don't have Emscripten SDK installed there is instruction:
# Go to your HOME `dev` foldercd~/dev
# Get the emsdk repo
git clone https://github.com/emscripten-core/emsdk.git
# Enter that directorycd emsdk
# Fetch the latest version of the emsdk (not needed the first time you clone)
git pull
# Download and install the latest SDK tools.
./emsdk install latest
# Make the "latest" SDK "active" for the current user. (writes .emscripten file)
./emsdk activate latest