2022-11-16 06:04:18 +00:00
|
|
|
pub const have_llvm = true;
|
2021-09-01 06:50:10 +01:00
|
|
|
pub const llvm_has_m68k = false;
|
|
|
|
pub const llvm_has_csky = false;
|
|
|
|
pub const llvm_has_arc = false;
|
2023-01-26 23:33:40 +00:00
|
|
|
pub const llvm_has_xtensa = false;
|
2022-10-31 20:12:52 +00:00
|
|
|
pub const version: [:0]const u8 = "@RESOLVED_ZIG_VERSION@";
|
2021-06-13 20:27:27 +01:00
|
|
|
pub const semver = @import("std").SemanticVersion.parse(version) catch unreachable;
|
2022-11-15 07:33:05 +00:00
|
|
|
pub const enable_logging: bool = false;
|
2021-10-14 12:50:10 +01:00
|
|
|
pub const enable_link_snapshots: bool = false;
|
2020-08-18 01:06:23 +01:00
|
|
|
pub const enable_tracy = false;
|
2022-06-09 23:33:04 +01:00
|
|
|
pub const value_tracing = false;
|
2022-11-15 07:33:05 +00:00
|
|
|
pub const have_stage1 = false;
|
2020-12-02 21:51:22 +00:00
|
|
|
pub const skip_non_native = false;
|
2022-11-16 06:04:18 +00:00
|
|
|
pub const only_c = false;
|
2022-11-16 00:40:04 +00:00
|
|
|
pub const force_gpa = false;
|
2023-01-10 18:15:09 +00:00
|
|
|
pub const omit_pkg_fetching_code = true;
|