mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 19:59:17 +00:00
Meta: Add compiled_action from LLVM, use it to generate TZDB sources
This commit is contained in:
parent
0e24bfb464
commit
b1e94a02fe
Notes:
sideshowbarker
2024-07-17 00:47:29 +09:00
Author: https://github.com/ADKaster
Commit: b1e94a02fe
Pull-request: https://github.com/SerenityOS/serenity/pull/18663
Reviewed-by: https://github.com/BenWiederhake
Reviewed-by: https://github.com/BertalanD
Reviewed-by: https://github.com/nico
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