mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-05-24 22:00:16 +00:00
13 lines
260 B
Zig
13 lines
260 B
Zig
extern "c" fn hwy_supported_targets() i64;
|
|
|
|
pub const Targets = @import("targets.zig").Targets;
|
|
|
|
pub fn supported_targets() Targets {
|
|
return @bitCast(hwy_supported_targets());
|
|
}
|
|
|
|
test {
|
|
_ = supported_targets();
|
|
_ = @import("runtime_detect.zig");
|
|
}
|