Meta: Add compiled_action from LLVM, use it to generate TZDB sources

This commit is contained in:
Andrew Kaster 2023-05-05 12:35:44 -06:00 committed by Andrew Kaster
commit b1e94a02fe
Notes: sideshowbarker 2024-07-17 00:47:29 +09:00
3 changed files with 112 additions and 2 deletions

View file

@ -0,0 +1,8 @@
#!/usr/bin/env python3
"""Runs a built binary."""
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:]))