https://github.com/kripken/emscripten
Raw File
Tip revision: 641c7a88c0f0553406380f793ad23b2a8ae0481b authored by Jukka Jylänki on 31 January 2018, 16:29:54 UTC
Tag version 1.37.31 after LLVM 4.0.1 merge
Tip revision: 641c7a8
emcc
#!/usr/bin/env python

# This script should work in python 2 *or* 3. It loads emcc.py, which needs python 2.

from tools import python_selector

import sys

if __name__ == '__main__':
  python_selector.run(__file__, profile=True)

back to top