https://github.com/kripken/emscripten
Revision 4091984a0c897c53b09de5a7caf64f9819a9be6e authored by Alon Zakai on 30 September 2013, 22:20:53 UTC, committed by Alon Zakai on 03 October 2013, 17:57:33 UTC
1 parent e91ceb0
Raw File
Tip revision: 4091984a0c897c53b09de5a7caf64f9819a9be6e authored by Alon Zakai on 30 September 2013, 22:20:53 UTC
remove unneeded EMIT_GENERATED_FUNCTIONS
Tip revision: 4091984
em-config
#!/usr/bin/env python2

'''
This is a helper tool which is designed to make it possible
for other apps to read emscripten's configuration variables
in a unified way.  Usage:

  em-config VAR_NAME

This tool prints the value of the variable to stdout if one
is found, or exits with 1 if the variable does not exist.
'''

import os, sys, re
from tools import shared

if len(sys.argv) != 2 or \
  not re.match(r"^[\w\W_][\w\W_\d]*$", sys.argv[1]) or \
  not (sys.argv[1] in dir(shared)):
  print 'Usage: em-config VAR_NAME'
  exit(1)

print eval('shared.' + sys.argv[1])

back to top