mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:07:44 +00:00
Meta: Add compiled_action from LLVM, use it to generate TZDB sources
This commit is contained in:
parent
0e24bfb464
commit
b1e94a02fe
3 changed files with 112 additions and 2 deletions
8
Meta/gn/build/run_compiled_binary.py
Normal file
8
Meta/gn/build/run_compiled_binary.py
Normal 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:]))
|
Loading…
Add table
Add a link
Reference in a new issue