-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jonatan Chaverri
committed
Sep 18, 2024
1 parent
7c82b47
commit 8125810
Showing
7 changed files
with
97 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
const std = @import("std"); | ||
/// Zig version. When writing code that supports multiple versions of Zig, prefer | ||
/// feature detection (i.e. with `@hasDecl` or `@hasField`) over version checks. | ||
pub const zig_version = std.SemanticVersion.parse("0.10.0") catch unreachable; | ||
pub const zig_backend = std.builtin.CompilerBackend.stage2_llvm; | ||
|
||
pub const output_mode = std.builtin.OutputMode.Exe; | ||
pub const link_mode = std.builtin.LinkMode.Dynamic; | ||
pub const is_test = false; | ||
pub const single_threaded = false; | ||
pub const abi = std.Target.Abi.none; | ||
pub const cpu: std.Target.Cpu = .{ | ||
.arch = .aarch64, | ||
.model = &std.Target.aarch64.cpu.generic, | ||
.features = std.Target.aarch64.featureSet(&[_]std.Target.aarch64.Feature{ | ||
.ete, | ||
.fp_armv8, | ||
.fuse_adrp_add, | ||
.fuse_aes, | ||
.neon, | ||
.trbe, | ||
.use_postra_scheduler, | ||
}), | ||
}; | ||
pub const os = std.Target.Os{ | ||
.tag = .macos, | ||
.version_range = .{ .semver = .{ | ||
.min = .{ | ||
.major = 15, | ||
.minor = 0, | ||
.patch = 0, | ||
}, | ||
.max = .{ | ||
.major = 15, | ||
.minor = 0, | ||
.patch = 0, | ||
}, | ||
}}, | ||
}; | ||
pub const target = std.Target{ | ||
.cpu = cpu, | ||
.os = os, | ||
.abi = abi, | ||
.ofmt = object_format, | ||
}; | ||
pub const object_format = std.Target.ObjectFormat.macho; | ||
pub const mode = std.builtin.Mode.Debug; | ||
pub const link_libc = true; | ||
pub const link_libcpp = false; | ||
pub const have_error_return_tracing = true; | ||
pub const valgrind_support = false; | ||
pub const sanitize_thread = false; | ||
pub const position_independent_code = true; | ||
pub const position_independent_executable = true; | ||
pub const strip_debug_info = false; | ||
pub const code_model = std.builtin.CodeModel.default; |
Empty file.
Binary file not shown.