Nico Weber | 8a2454c | 2018-11-29 22:53:21 +0000 | [diff] [blame] | 1 | #!/usr/bin/env python |
2 | """Runs tablegen.""" | ||||
3 | |||||
4 | import subprocess | ||||
5 | import sys | ||||
6 | |||||
7 | # Prefix with ./ to run built binary, not arbitrary stuff from PATH. | ||||
8 | sys.exit(subprocess.call(['./' + sys.argv[1]] + sys.argv[2:])) |