authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-05-05 15:26:36-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-05-05 15:26:36-04:00
logae080b5c217fbcfd350a5d52b8b4626a95540ab3
treed45b11bf48054c6a22960400b0425b2f9af9046c
parentc8b4cc2ff9cf15a42f95b2302e02431a0004f5c8

readme: remove the part about stage2 until it's done


1 files changed, 0 insertions(+), 37 deletions(-)

README.md-37
......@@ -71,40 +71,3 @@ can do about it. See that issue for a workaround you can do in the meantime.
7171##### Windows
7272
7373See https://github.com/ziglang/zig/wiki/Building-Zig-on-Windows
74
75### Stage 2: Build Self-Hosted Zig from Zig Source Code
76
77*Note: Stage 2 compiler is not complete. Beta users of Zig should use the
78Stage 1 compiler for now.*
79
80Dependencies are the same as Stage 1, except now you can use stage 1 to compile
81Zig code.
82
83```
84bin/zig build --prefix $(pwd)/stage2
85```
86
87This produces `./stage2/bin/zig` which can be used for testing and development.
88Once it is feature complete, it will be used to build stage 3 - the final compiler
89binary.
90
91### Stage 3: Rebuild Self-Hosted Zig Using the Self-Hosted Compiler
92
93*Note: Stage 2 compiler is not yet able to build Stage 3. Building Stage 3 is
94not yet supported.*
95
96Once the self-hosted compiler can build itself, this will be the actual
97compiler binary that we will install to the system. Until then, users should
98use stage 1.
99
100#### Debug / Development Build
101
102```
103./stage2/bin/zig build --prefix $(pwd)/stage3
104```
105
106#### Release / Install Build
107
108```
109./stage2/bin/zig build install -Drelease
110```