https://github.com/kripken/emscripten
Raw File
Tip revision: eecf6f5a465f4fd213c14e5087288981af70b69b authored by Sam Clegg on 14 January 2020, 00:27:38 UTC
Hide stderr when running llmv-nm --print-armap (#10198)
Tip revision: eecf6f5
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