https://github.com/kripken/emscripten
Raw File
Tip revision: d7c920299dd05fa8ded950a550275826848e8f91 authored by Alon Zakai on 26 June 2019, 13:23:06 UTC
Handle a tiny {} function body in modifyFunction, which can happen when bysyncify adds extra assertion checks (#8855)
Tip revision: d7c9202
emcc
#!/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

import sys

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