docs: compiler's Zig dependency is not documented
Observation:
When building, compiler/src/builder.rs invokes the zig command from the system PATH:
rust pub fn get_zig_path() -> &'static str { "zig" }
This means the Zig toolchain must be pre-installed on the user's machine for azcli build to work. This requirement is not mentioned in README.md, CONTRIBUTING.md, or any other documentation.
Impact:
A new user without Zig installed will run into a confusing, unhelpful error when trying to build, with no clue as to the actual cause.
Suggestion:
- Add a "Requirements" section to the README specifying Zig (and the required version).
- Alternatively, have the
build command detect a missing Zig installation and show a clear message (e.g. "Zig not found — install it from: ...").
P.S: Ik its not a big problem for developers but it is for new users and who dont know anything about the structure of AzLang
docs: compiler's Zig dependency is not documented
Observation:
When building,
compiler/src/builder.rsinvokes thezigcommand from the system PATH:
rust pub fn get_zig_path() -> &'static str { "zig" } This means the Zig toolchain must be pre-installed on the user's machine for
azcli buildto work. This requirement is not mentioned in README.md, CONTRIBUTING.md, or any other documentation.Impact:
A new user without Zig installed will run into a confusing, unhelpful error when trying to build, with no clue as to the actual cause.
Suggestion:
buildcommand detect a missing Zig installation and show a clear message (e.g. "Zig not found — install it from: ...").P.S: Ik its not a big problem for developers but it is for new users and who dont know anything about the structure of AzLang