mirror of
https://github.com/ziglang/zig.git
synced 2025-12-26 08:03:08 +00:00
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
Zig
9 lines
338 B
Zig
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@;
|