mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +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)} }};")
|