2020-09-04 04:23:00 +01: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;
|
2020-12-08 00:23:17 +00:00
|
|
|
pub const version: [:0]const u8 = "@ZIG_VERSION@";
|
2021-06-13 20:27:27 +01:00
|
|
|
pub const semver = @import("std").SemanticVersion.parse(version) catch unreachable;
|
2021-03-21 09:56:41 +00:00
|
|
|
pub const enable_logging: bool = @ZIG_ENABLE_LOGGING_BOOL@;
|
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-08-08 07:10:57 +01:00
|
|
|
pub const have_stage1 = true;
|
2020-12-02 21:51:22 +00:00
|
|
|
pub const skip_non_native = false;
|
2022-10-23 21:18:22 +01:00
|
|
|
pub const only_c = false;
|