bd44b5aa08
Test / build-libghostty-vt (x86_64-windows-gnu) (push) Has been cancelled
Test / build-libghostty-vt-macos (aarch64-ios) (push) Has been cancelled
Test / build-libghostty-vt-macos (aarch64-macos) (push) Has been cancelled
Test / build-libghostty-vt-macos (x86_64-macos) (push) Has been cancelled
Test / build-nix (namespace-profile-ghostty-md-arm64) (push) Has been cancelled
Test / build-dist (push) Has been cancelled
Test / GTK x11=true wayland=true (push) Has been cancelled
Test / Build -Dsimd=false (push) Has been cancelled
Test / Build -Dsimd=true (push) Has been cancelled
Test / Build -Dsentry=false (push) Has been cancelled
Test / Build -Dsentry=true (push) Has been cancelled
Test / zig-fmt (push) Has been cancelled
Test / GitHub Actions Pins (push) Has been cancelled
Test / prettier (push) Has been cancelled
Test / swiftlint (push) Has been cancelled
Test / alejandra (push) Has been cancelled
Test / typos (push) Has been cancelled
Nix / Required Checks: Nix (push) Has been cancelled
Nix / check-zig-cache-hash (push) Has been cancelled
Test / skip (push) Has been cancelled
Test / Required Checks: Test (push) Has been cancelled
Test / build-bench (push) Has been cancelled
Test / list-examples (push) Has been cancelled
Test / Example ${{ matrix.dir }} (Windows) (push) Has been cancelled
Test / build-cmake (push) Has been cancelled
Test / test-lib-vt-pkgconfig (push) Has been cancelled
Test / build-flatpak (push) Has been cancelled
Test / build-snap (push) Has been cancelled
Test / build-libghostty-vt (aarch64-linux) (push) Has been cancelled
Test / build-libghostty-vt (aarch64-macos) (push) Has been cancelled
Test / build-libghostty-vt (wasm32-freestanding) (push) Has been cancelled
Test / build-libghostty-vt (x86_64-linux) (push) Has been cancelled
Test / build-libghostty-vt (x86_64-linux-musl) (push) Has been cancelled
Test / build-libghostty-vt (x86_64-macos) (push) Has been cancelled
Test / build-libghostty-vt-android (aarch64-linux-android) (push) Has been cancelled
Test / build-libghostty-vt-android (arm-linux-androideabi) (push) Has been cancelled
Test / build-libghostty-vt-android (x86_64-linux-android) (push) Has been cancelled
Test / build-libghostty-vt-windows (push) Has been cancelled
Test / build-libghostty-windows-gnu (push) Has been cancelled
Test / build-linux (namespace-profile-ghostty-md) (push) Has been cancelled
Test / build-linux (namespace-profile-ghostty-md-arm64) (push) Has been cancelled
Test / build-linux-libghostty (push) Has been cancelled
Test / build-nix (namespace-profile-ghostty-md) (push) Has been cancelled
Test / build-dist-lib-vt (push) Has been cancelled
Test / trigger-snap (push) Has been cancelled
Test / trigger-flatpak (push) Has been cancelled
Test / build-macos (push) Has been cancelled
Test / build-macos-freetype (push) Has been cancelled
Test / test (push) Has been cancelled
Test / test-lib-vt (push) Has been cancelled
Test / GTK x11=false wayland=false (push) Has been cancelled
Test / GTK x11=true wayland=false (push) Has been cancelled
Test / GTK x11=false wayland=true (push) Has been cancelled
Test / test-macos (push) Has been cancelled
Test / test-windows (push) Has been cancelled
Test / Build -Di18n=false (push) Has been cancelled
Test / Build -Di18n=true (push) Has been cancelled
Test / Build test/fuzz-libghostty (push) Has been cancelled
Test / shellcheck (push) Has been cancelled
Test / translations (push) Has been cancelled
Test / blueprint-compiler (push) Has been cancelled
Test / Test pkg/wuffs (push) Has been cancelled
Test / Test build on Debian 13 (push) Has been cancelled
Test / valgrind (push) Has been cancelled
Test / Example ${{ matrix.dir }} (push) Has been cancelled
107 lines
3.6 KiB
Zig
107 lines
3.6 KiB
Zig
const std = @import("std");
|
|
|
|
pub fn build(b: *std.Build) !void {
|
|
const optimize = b.standardOptimizeOption(.{});
|
|
const target = b.standardTargetOptions(.{});
|
|
const no_libcxx = b.option(bool, "no_libcxx", "Set SIMDUTF_NO_LIBCXX to avoid libc++ dependency") orelse false;
|
|
|
|
const lib = b.addLibrary(.{
|
|
.name = "simdutf",
|
|
.root_module = b.createModule(.{
|
|
.target = target,
|
|
.optimize = optimize,
|
|
}),
|
|
.linkage = .static,
|
|
});
|
|
lib.addIncludePath(b.path("vendor"));
|
|
lib.linkLibC();
|
|
libcpp: {
|
|
if (target.result.abi == .msvc) {
|
|
// On MSVC, we must not use linkLibCpp because Zig unconditionally
|
|
// passes -nostdinc++ and then adds its bundled libc++/libc++abi
|
|
// include paths, which conflict with MSVC's own C++ runtime headers.
|
|
// The MSVC SDK include directories (added via linkLibC) contain
|
|
// both C and C++ headers, so linkLibCpp is not needed.
|
|
break :libcpp;
|
|
}
|
|
|
|
// We link libcpp even with no_libcxx because simdutf requires
|
|
// libc++ headers at build time. But it doesn't require libc++
|
|
// at runtime. For Ghostty itself, we have CI tests to verify this.
|
|
lib.linkLibCpp();
|
|
}
|
|
|
|
if (target.result.os.tag.isDarwin()) {
|
|
const apple_sdk = @import("apple_sdk");
|
|
try apple_sdk.addPaths(b, lib);
|
|
}
|
|
|
|
if (target.result.abi.isAndroid()) {
|
|
const android_ndk = @import("android_ndk");
|
|
try android_ndk.addPaths(b, lib);
|
|
}
|
|
|
|
var flags: std.ArrayList([]const u8) = .empty;
|
|
defer flags.deinit(b.allocator);
|
|
// Zig 0.13 bug: https://github.com/ziglang/zig/issues/20414
|
|
// (See root Ghostty build.zig on why we do this)
|
|
try flags.append(b.allocator, "-DSIMDUTF_IMPLEMENTATION_ICELAKE=0");
|
|
|
|
// Fixes linker issues for release builds missing ubsanitizer symbols
|
|
try flags.appendSlice(b.allocator, &.{
|
|
"-fno-sanitize=undefined",
|
|
"-fno-sanitize-trap=undefined",
|
|
});
|
|
|
|
if (no_libcxx) {
|
|
try flags.append(b.allocator, "-DSIMDUTF_NO_LIBCXX");
|
|
if (target.result.abi != .msvc) {
|
|
// Clang/GCC-only flags; MSVC doesn't accept these.
|
|
try flags.append(b.allocator, "-fno-exceptions");
|
|
try flags.append(b.allocator, "-fno-rtti");
|
|
}
|
|
|
|
lib.root_module.addCMacro("SIMDUTF_NO_LIBCXX", "1");
|
|
}
|
|
|
|
if (target.result.abi == .msvc) {
|
|
// On MSVC we skip linkLibCpp (see above), so the C++ standard is
|
|
// not set implicitly. simdutf requires C++17, so set it explicitly.
|
|
try flags.append(b.allocator, "-std=c++17");
|
|
}
|
|
|
|
if (target.result.os.tag == .freebsd or target.result.abi == .musl) {
|
|
try flags.append(b.allocator, "-fPIC");
|
|
}
|
|
|
|
lib.addCSourceFiles(.{
|
|
.flags = flags.items,
|
|
.files = &.{
|
|
"vendor/simdutf.cpp",
|
|
},
|
|
});
|
|
lib.installHeadersDirectory(
|
|
b.path("vendor"),
|
|
"",
|
|
.{ .include_extensions = &.{".h"} },
|
|
);
|
|
|
|
b.installArtifact(lib);
|
|
|
|
// {
|
|
// const test_exe = b.addTest(.{
|
|
// .name = "test",
|
|
// .root_source_file = .{ .path = "main.zig" },
|
|
// .target = target,
|
|
// .optimize = optimize,
|
|
// });
|
|
// test_exe.linkLibrary(lib);
|
|
//
|
|
// var it = module.import_table.iterator();
|
|
// while (it.next()) |entry| test_exe.root_module.addImport(entry.key_ptr.*, entry.value_ptr.*);
|
|
// const tests_run = b.addRunArtifact(test_exe);
|
|
// const test_step = b.step("test", "Run tests");
|
|
// test_step.dependOn(&tests_run.step);
|
|
// }
|
|
}
|