Chocolatey package for emscripten
Install chocolatey from here then:
choco install emscriptenNote: The compiler is installed in "$env:LocalAppData\emsdk".
choco uninstall emscriptenNote: The compiler is removed from "$env:LocalAppData\emsdk".
You should have git installed. These scripts all run in PowerShell.
- Clone this repository:
git clone https://github.com/aminya/chocolatey-emscripten.git
cd chocolatey-emscripten\tools- run
chocolateyInstall
.\chocolateyInstall.ps1This installs the latest version. If you want to install a certain version first set emsdkVersion environment variable and then run install:
$emsdkVersion="3.1.40"
.\chocolateyInstall.ps1run chocolateyUpgrade
.\chocolateyUpgrade.ps1This upgrades to the latest version. If you want to upgrade to a certain version first set emsdkVersion environment variable and then run upgrade:
$emsdkVersion="3.1.40"
.\chocolateyUpgrade.ps1.\chocolateyUninstall.ps1