run_tablegen.py 206 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 #!/usr/bin/env python """Runs tablegen.""" import subprocess import sys # Prefix with ./ to run built binary, not arbitrary stuff from PATH. sys.exit(subprocess.call(['./' + sys.argv[1]] + sys.argv[2:]))