mirror of
https://github.com/ziglang/zig.git
synced 2024-11-26 23:22:44 +00:00
34e9bbb9d4
This takes a bit longer since the interpreted part has to do more work but it saves a round trip through the compiler by allowing `zig2 build` to be the final step. 1-2-3, done. For me this is currently failing due to compilation errors generated by GCC when compiling zig2.c but in theory if those are fixed, it should work!
15 lines
543 B
Zig
15 lines
543 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 = "@RESOLVED_ZIG_VERSION@";
|
|
pub const semver = @import("std").SemanticVersion.parse(version) catch unreachable;
|
|
pub const enable_logging: bool = false;
|
|
pub const enable_link_snapshots: bool = false;
|
|
pub const enable_tracy = false;
|
|
pub const value_tracing = false;
|
|
pub const have_stage1 = false;
|
|
pub const skip_non_native = false;
|
|
pub const only_c = false;
|
|
pub const force_gpa = false;
|