authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2018-12-18 15:55:00-05:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2018-12-18 15:55:00-05:00
logf6a02a427f6f81e531f05624ee353872e2de7d99
tree093d7b61f012bea93a63fdf5f48858f063771dfa
parente077a446566b0aa77a121f9554f3cb355899653a
signaturelock-open Commit is signed but in an unrecognized format.

README: clarify self-hosted status


1 files changed, 6 insertions(+), 3 deletions(-)

README.md+6-3
......@@ -171,7 +171,8 @@ See https://github.com/ziglang/zig/wiki/Building-Zig-on-Windows
171171*Note: Stage 2 compiler is not complete. Beta users of Zig should use the
172172Stage 1 compiler for now.*
173173
174Dependencies are the same as Stage 1, except now you have a working zig compiler.
174Dependencies are the same as Stage 1, except now you can use stage 1 to compile
175Zig code.
175176
176177```
177178bin/zig build --build-file ../build.zig --prefix $(pwd)/stage2 install
......@@ -183,11 +184,13 @@ binary.
183184
184185### Stage 3: Rebuild Self-Hosted Zig Using the Self-Hosted Compiler
185186
186This is the actual compiler binary that we will install to the system.
187
188187*Note: Stage 2 compiler is not yet able to build Stage 3. Building Stage 3 is
189188not yet supported.*
190189
190Once the self-hosted compiler can build itself, this will be the actual
191compiler binary that we will install to the system. Until then, users should
192use stage 1.
193
191194#### Debug / Development Build
192195
193196```