mirror of
https://github.com/ziglang/zig.git
synced 2026-01-04 20:43:19 +00:00
This option can be used to produce a C backend build of the self-hosted compiler, which only has the C backend enabled. Once the C backend is capable of self-hosting, this will be a way for us to replace our stage1 codebase with a C backend build of self-hosted, which we can then use for bootstrapping. See #5246 for more details. Using this option right now results in a crash because the C backend is not yet passing all the behavior tests.
14 lines
524 B
Zig
14 lines
524 B
Zig
pub const have_llvm = true;
|
|
pub const llvm_has_m68k = false;
|
|
pub const llvm_has_csky = false;
|
|
pub const llvm_has_arc = false;
|
|
pub const version: [:0]const u8 = "@ZIG_VERSION@";
|
|
pub const semver = @import("std").SemanticVersion.parse(version) catch unreachable;
|
|
pub const enable_logging: bool = @ZIG_ENABLE_LOGGING_BOOL@;
|
|
pub const enable_link_snapshots: bool = false;
|
|
pub const enable_tracy = false;
|
|
pub const value_tracing = false;
|
|
pub const have_stage1 = true;
|
|
pub const skip_non_native = false;
|
|
pub const only_c = false;
|