https://github.com/kripken/emscripten
Raw File
Tip revision: ae56a40333c1c5a7f4a70f16546ac712d32a86bd authored by Jukka Jylänki on 02 February 2018, 01:44:48 UTC
Version 1.37.33 to fix 64-bit C++11 atomics in non-multithreaded Wasm builds.
Tip revision: ae56a40
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