https://github.com/kripken/emscripten
Raw File
Tip revision: af96f6d4ea45897a0d9876a9240dca1da89261d1 authored by Alon Zakai on 25 May 2018, 22:00:48 UTC
1.38.2
Tip revision: af96f6d
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