mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 22:04:20 +00:00
9 lines
220 B
Python
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)} }};")
|