nixpkgs/pkgs/by-name/ld/ld64/gen_compile_stubs.py
2024-07-13 17:54:34 -04:00

9 lines
220 B
Python

#!/usr/bin/env python
import sys
from pathlib import Path
byteseq = (str(int(x)) for x in Path(sys.argv[1]).read_bytes())
print("#pragma once")
print(f"static const char compile_stubs[] = {{ {', '.join(byteseq)} }};")