https://github.com/kripken/emscripten
Raw File
Tip revision: c346176983afcaa6691472babadff567dcae7934 authored by juj on 07 November 2018, 14:56:38 UTC
HTML5 Event Backproxying. Bump version to 1.38.17 to rebuild cache after adding new field to struct info. (#6202)
Tip revision: c346176
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