zig fmt build.zig

This commit is contained in:
Pierre Tachoire
2025-08-14 11:27:31 +02:00
parent 96b10f4b85
commit 1e095fede5

View File

@@ -163,7 +163,6 @@ fn common(b: *Build, opts: *Build.Step.Options, step: *Build.Step.Compile) !void
v8_mod.addOptions("default_exports", v8_opts);
mod.addImport("v8", v8_mod);
const release_dir = if (mod.optimize.? == .Debug) "debug" else "release";
const os = switch (target.result.os.tag) {
.linux => "linux",
@@ -452,13 +451,11 @@ fn buildZlib(b: *Build, m: *Build.Module) !void {
const root = "vendor/zlib/";
zlib.installHeader(b.path(root ++ "zlib.h"), "zlib.h");
zlib.installHeader(b.path(root ++ "zconf.h"), "zconf.h");
zlib.addCSourceFiles(.{
.flags = &.{
zlib.addCSourceFiles(.{ .flags = &.{
"-DHAVE_SYS_TYPES_H",
"-DHAVE_STDINT_H",
"-DHAVE_STDDEF_H",
},
.files = &.{
}, .files = &.{
root ++ "adler32.c",
root ++ "compress.c",
root ++ "crc32.c",
@@ -474,8 +471,7 @@ fn buildZlib(b: *Build, m: *Build.Module) !void {
root ++ "trees.c",
root ++ "uncompr.c",
root ++ "zutil.c",
}
});
} });
}
fn buildMbedtls(b: *Build, m: *Build.Module) !void {
@@ -488,10 +484,7 @@ fn buildMbedtls(b: *Build, m: *Build.Module) !void {
mbedtls.addIncludePath(b.path(root ++ "include"));
mbedtls.addIncludePath(b.path(root ++ "library"));
mbedtls.addCSourceFiles(.{
.flags = &.{
},
.files = &.{
mbedtls.addCSourceFiles(.{ .flags = &.{}, .files = &.{
root ++ "library/aes.c",
root ++ "library/aesni.c",
root ++ "library/aesce.c",
@@ -598,8 +591,7 @@ fn buildMbedtls(b: *Build, m: *Build.Module) !void {
root ++ "library/ssl_tls13_server.c",
root ++ "library/ssl_tls13_client.c",
root ++ "library/ssl_tls13_generic.c",
}
});
} });
}
fn buildNghttp2(b: *Build, m: *Build.Module) !void {
@@ -611,13 +603,11 @@ fn buildNghttp2(b: *Build, m: *Build.Module) !void {
const root = "vendor/nghttp2/";
nghttp2.addIncludePath(b.path(root ++ "lib"));
nghttp2.addIncludePath(b.path(root ++ "lib/includes"));
nghttp2.addCSourceFiles(.{
.flags = &.{
nghttp2.addCSourceFiles(.{ .flags = &.{
"-DNGHTTP2_STATICLIB",
"-DHAVE_NETINET_IN",
"-DHAVE_TIME_H",
},
.files = &.{
}, .files = &.{
root ++ "lib/sfparse.c",
root ++ "lib/nghttp2_alpn.c",
root ++ "lib/nghttp2_buf.c",
@@ -644,8 +634,7 @@ fn buildNghttp2(b: *Build, m: *Build.Module) !void {
root ++ "lib/nghttp2_version.c",
root ++ "lib/nghttp2_ratelim.c",
root ++ "lib/nghttp2_time.c",
}
});
} });
}
fn buildCurl(b: *Build, m: *Build.Module) !void {
@@ -659,8 +648,7 @@ fn buildCurl(b: *Build, m: *Build.Module) !void {
curl.addIncludePath(b.path(root ++ "lib"));
curl.addIncludePath(b.path(root ++ "include"));
curl.addCSourceFiles(.{
.flags = &.{
},
.flags = &.{},
.files = &.{
root ++ "lib/altsvc.c",
root ++ "lib/amigaos.c",