mirror of
https://github.com/openharmony/third_party_rust_libc.git
synced 2026-07-21 02:15:44 -04:00
d2a79f64c8
The current active LTS is now v14.
13 lines
311 B
Bash
Executable File
13 lines
311 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
# shellcheck disable=SC1091
|
|
source /emsdk-portable/emsdk_env.sh &> /dev/null
|
|
|
|
# emsdk-portable provides a node binary, but we need version 8 to run wasm
|
|
# NOTE: Do not forget to sync Node.js version with `emscripten.sh`!
|
|
export PATH="/node-v14.17.0-linux-x64/bin:$PATH"
|
|
|
|
exec "$@"
|