https://github.com/kripken/emscripten
Raw File
Tip revision: b0ed74c8123c67324e77b437afea4ccdb74dc6ea authored by Alon Zakai on 14 June 2018, 02:46:07 UTC
1.38.6
Tip revision: b0ed74c
emcmake
#!/usr/bin/env python

# This script should work in python 2 *or* 3. It loads the main code using
# python_selector, which may pick a different version.

from tools import python_selector

if __name__ == '__main__':
  python_selector.run(__file__)
back to top