forked from OSchip/llvm-project
18 lines
308 B
Python
18 lines
308 B
Python
|
#!/usr/bin/python
|
||
|
|
||
|
import os, sys, subprocess
|
||
|
|
||
|
|
||
|
idx = 1
|
||
|
for arg in sys.argv[1:]:
|
||
|
if not "=" in arg:
|
||
|
break
|
||
|
idx += 1
|
||
|
(argname, argval) = arg.split("=")
|
||
|
os.environ["SIMCTL_CHILD_" + argname] = argval
|
||
|
|
||
|
exitcode = subprocess.call(sys.argv[idx:])
|
||
|
if exitcode > 125:
|
||
|
exitcode = 126
|
||
|
sys.exit(exitcode)
|