mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-05-21 16:41:56 +03:00
1af31baf0b
Previously you had to recompile if you wanted to change the log scopes that get printed. Now, log scopes can be set at runtime, and -Dlog controls whether all logging is available at runtime. Purpose here is a nicer development experience. Most likely stage2 developers will always want -Dlog enabled and then pass --debug-log scopes when debugging particular issues.
9 lines
338 B
Plaintext
9 lines
338 B
Plaintext
pub const have_llvm = true;
|
|
pub const version: [:0]const u8 = "@ZIG_VERSION@";
|
|
pub const semver = try @import("std").SemanticVersion.parse(version);
|
|
pub const enable_logging: bool = false;
|
|
pub const enable_tracy = false;
|
|
pub const is_stage1 = true;
|
|
pub const skip_non_native = false;
|
|
pub const omit_stage2: bool = @ZIG_OMIT_STAGE2_BOOL@;
|