https://github.com/kripken/emscripten
Raw File
Tip revision: 6c634b115d6b259516706c99a3c74d100a356254 authored by Jukka Jylänki on 18 January 2019, 20:56:02 UTC
Micro-optimize access to emscripten_memcpy_big: moving return statement to wasm side saves 6 bytes (reduces JS code by 9 bytes, increases wasm code by only 3 bytes)
Tip revision: 6c634b1
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