Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/python-wasm
Path: blob/main/bin/env.sh
1390 views
1
#!/usr/bin/env bash
2
PACKAGES=`pwd`/packages
3
4
# You have to run this via "source bin/env.sh" from the top level. It adds to your PATH:
5
# - The scripts in this bin directory
6
# - zig
7
# - some scripts in python-wasm; in particular, the super useful wabt tools such as wasm-objdump and wasm-strip.
8
9
export PATH=`pwd`/bin:$PATH
10
11