brintos

brintos / llvm-project-archived public Read only

0
0
Text · 213 B · abe606f Raw
9 lines · python
1#!/usr/bin/env python32"""Runs a built binary."""3 4import subprocess5import sys6 7# Prefix with ./ to run built binary, not arbitrary stuff from PATH.8sys.exit(subprocess.call(["./" + sys.argv[1]] + sys.argv[2:]))9