1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:37:35 +00:00

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
parent 0e24bfb464
commit b1e94a02fe
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:]))