1
Fork 0
Go to file
Motiejus Jakštys 68045e27b8 remove stage3 where redundant
The full run now takes ~2.5h on AMD Ryzen 7 7840HS
2024-11-10 22:54:58 +02:00
0.10.0-675-g9d93b2ccf1-TypeOf-hack.patch run: BoundFn hack 2024-11-03 22:20:46 +02:00
0.10.0-747-g7b2a936173-CallOptions.patch add missing patch 2024-11-06 14:11:20 +02:00
0.10.0-1638-g7199d7c777-re-add-qualCast.patch add missing patch 2024-11-09 14:39:42 +02:00
Dockerfile re-add llvm17,18 2024-11-10 16:43:11 +02:00
README.md container fixes 2024-11-09 23:17:04 +02:00
llvm-snapshot.gpg.key Initial commit 2024-11-01 09:33:22 +02:00
llvm.list re-add llvm17,18 2024-11-10 16:43:11 +02:00
run remove stage3 where redundant 2024-11-10 22:54:58 +02:00

README.md

Building modern Zig from the original C++ implementation

This repository explores building Zig from the C++ implementation without using binary blobs. Forum post goes with this.

Clone zig and prune binary files from history:

$ git clone https://github.com/ziglang/zig zig2
$ cd zig2
$ git config user.name "$(git config --get user.name)"
$ git config user.email "$(git config --get user.email)"
$ git filter-repo --prune-empty=never --prune-degenerate never --invert-paths --path-glob 'stage1/zig1.wasm*' --path stage1/zig1.c

Now build an isolated container with a bunch of zig historic dependencies:

$ docker build -t zig-repro .
$ docker run -ti --rm --name zig-repro \
    -v ~/code:/x \
    -v /home/$USER/.cache/zig:/home/$USER/.cache/zig \
    -w /x/zig2 \
    zig-repro \
    sh -c "useradd -s /bin/bash -u $UID $USER && su $USER; bash"

And run the thing in the container:

$ ../zig-repro/run