mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-09-14 18:01:58 +00:00
118 lines
4.3 KiB
Zig
118 lines
4.3 KiB
Zig
const std = @import("std");
|
|
|
|
// All the C macros defined so that the header matches the build.
|
|
const defines = [_][]const u8{
|
|
"WUFFS_CONFIG__MODULES",
|
|
"WUFFS_CONFIG__MODULE__AUX__BASE",
|
|
"WUFFS_CONFIG__MODULE__AUX__IMAGE",
|
|
"WUFFS_CONFIG__MODULE__BASE",
|
|
"WUFFS_CONFIG__MODULE__ADLER32",
|
|
"WUFFS_CONFIG__MODULE__CRC32",
|
|
"WUFFS_CONFIG__MODULE__DEFLATE",
|
|
"WUFFS_CONFIG__MODULE__JPEG",
|
|
"WUFFS_CONFIG__MODULE__PNG",
|
|
"WUFFS_CONFIG__MODULE__ZLIB",
|
|
};
|
|
|
|
// Generated C code, includes the macros above. Designed to mimic old c.zig.
|
|
// TODO: is this still needed, or are the -D flags enough?
|
|
const wuffs_c_source = wuffs_c_source: {
|
|
const include: []const u8 = "#include <wuffs-v0.4.c>";
|
|
const len = len: {
|
|
var len: usize = 0;
|
|
for (defines) |d| len += std.fmt.count("#define {s}\n", .{d});
|
|
len += std.fmt.count("{s}\n", .{include});
|
|
break :len len;
|
|
};
|
|
|
|
var buf: [len:0]u8 = undefined;
|
|
var writer: std.Io.Writer = .fixed(&buf);
|
|
for (defines) |d| writer.print("#define {s}\n", .{d}) catch unreachable;
|
|
writer.print("{s}\n", .{include}) catch unreachable;
|
|
buf[len] = 0;
|
|
break :wuffs_c_source buf;
|
|
};
|
|
|
|
pub fn build(b: *std.Build) !void {
|
|
const target = b.standardTargetOptions(.{});
|
|
const optimize = b.standardOptimizeOption(.{});
|
|
|
|
const module = b.addModule("wuffs", .{
|
|
.root_source_file = b.path("src/main.zig"),
|
|
.target = target,
|
|
.optimize = optimize,
|
|
});
|
|
|
|
const unit_tests = b.addTest(.{
|
|
.name = "test",
|
|
.root_module = module,
|
|
});
|
|
|
|
// Windows always has a libc available.
|
|
const windows = target.result.os.tag == .windows;
|
|
|
|
translate: {
|
|
const translate_c = b.lazyImport(@This(), "translate_c") orelse break :translate;
|
|
const translate_c_dep = b.lazyDependency("translate_c", .{}) orelse break :translate;
|
|
const wuffs_c: translate_c.Translator = .init(translate_c_dep, .{
|
|
.c_source_file = b.addWriteFiles().add("wuffs_c.h", &wuffs_c_source),
|
|
.target = target,
|
|
.optimize = optimize,
|
|
.link_libc = windows,
|
|
});
|
|
|
|
// Wuffs only needs stdlib.h and string.h from libc, and only for
|
|
// a handful of declarations. We provide minimal versions of these
|
|
// headers so that wuffs can be translated and compiled without
|
|
// libc, notably for freestanding targets (wasm32) but this also
|
|
// avoids requiring an Apple SDK for translate-c on macOS.
|
|
if (!windows) wuffs_c.addIncludePath(b.path("include"));
|
|
|
|
var flags: std.ArrayList([]const u8) = .empty;
|
|
defer flags.deinit(b.allocator);
|
|
try flags.append(b.allocator, "-DWUFFS_IMPLEMENTATION");
|
|
|
|
// Disable ubsan on Windows to avoid undefined __ubsan_handle_*
|
|
// references: Zig's ubsan runtime can't be bundled on Windows
|
|
// (its /exclude-symbols directives break the MSVC linker), so
|
|
// these handlers would go unresolved. This affects both the
|
|
// MSVC and GNU ABIs.
|
|
if (windows) {
|
|
try flags.append(b.allocator, "-fno-sanitize=undefined");
|
|
try flags.append(b.allocator, "-fno-sanitize-trap=undefined");
|
|
}
|
|
inline for (defines) |key| {
|
|
try flags.append(b.allocator, "-D" ++ key);
|
|
}
|
|
|
|
if (b.lazyDependency("wuffs", .{})) |wuffs_dep| {
|
|
wuffs_c.addIncludePath(wuffs_dep.path("release/c"));
|
|
wuffs_c.mod.addCSourceFile(.{
|
|
.file = wuffs_dep.path("release/c/wuffs-v0.4.c"),
|
|
.flags = flags.items,
|
|
});
|
|
}
|
|
|
|
module.addImport("wuffs_c", wuffs_c.mod);
|
|
}
|
|
|
|
if (b.lazyDependency("pixels", .{})) |pixels_dep| {
|
|
inline for (.{ "000000", "FFFFFF" }) |color| {
|
|
inline for (.{ "gif", "jpg", "png", "ppm" }) |extension| {
|
|
const filename = std.fmt.comptimePrint(
|
|
"1x1#{s}.{s}",
|
|
.{ color, extension },
|
|
);
|
|
unit_tests.root_module.addAnonymousImport(filename, .{
|
|
.root_source_file = pixels_dep.path(filename),
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
const run_unit_tests = b.addRunArtifact(unit_tests);
|
|
|
|
const test_step = b.step("test", "Run unit tests");
|
|
test_step.dependOn(&run_unit_tests.step);
|
|
}
|