https://github.com/kripken/emscripten
Raw File
Tip revision: 9c4dfa12feb2b3d68bc2a44ad42b95f3b647728d authored by Derek Schuff on 01 December 2018, 00:24:43 UTC
Implement Musl's atomic primitives for wasm backend (#7594)
Tip revision: 9c4dfa1
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