diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-12-14 16:16:59 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-12-14 16:16:59 -0800 |
commit | 8e7d56453f584c3be3b1aca0f642a94278afc466 (patch) | |
tree | 448ef0ac60686ba6621b253d3f16b03cf247a401 /emconfigure | |
parent | ad34dff9ae485eafab64d68a61a193f82f3b1988 (diff) |
initial prep for emcc by default
Diffstat (limited to 'emconfigure')
-rwxr-xr-x | emconfigure | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/emconfigure b/emconfigure new file mode 100755 index 00000000..b52d90c2 --- /dev/null +++ b/emconfigure @@ -0,0 +1,11 @@ +#!/usr/bin/env python + +''' +This is a helper script. See emcc. +''' + +import os, sys +from tools import shared + +shared.Building.configure(sys.argv[1:]) + |