https://github.com/kripken/emscripten
Raw File
Tip revision: 64a99198ac01fe0bb5e166ca590f3b2b48c7d7ef authored by Sam Clegg on 08 November 2018, 23:24:10 UTC
Rename tableBase/memoryBase to __table_base/__memory_base (#7467)
Tip revision: 64a9919
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