https://github.com/kripken/emscripten
Raw File
Tip revision: a400afe9c0aeb89fc800a344bd8765e44119ea35 authored by Sam Clegg on 12 September 2019, 20:56:35 UTC
Version 1.38.45 (#9429)
Tip revision: a400afe
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