Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ fn addSourceFilesFromModule(b: *std.Build, upsteam: std.Build.LazyPath, step: *s
var srcs_cpp = try std.ArrayList([]const u8).initCapacity(b.allocator, module.srcs.len);

for (module.srcs) |src| {
// Skip .inc files - these are include files, not directly compiled sources
if (std.mem.endsWith(u8, src, ".inc")) {
continue;
}
if (std.mem.endsWith(u8, src, ".c")) {
srcs_c.appendAssumeCapacity(src);
} else {
Expand Down
6 changes: 3 additions & 3 deletions build.zig.zon
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
.{
.name = .boringssl,
.version = "0.20250514.0",
.version = "0.20251124.0",
.fingerprint = 0x5f0947d235641b12,
.dependencies = .{
.boringssl = .{
.url = "https://github.com/google/boringssl/archive/5622da92e1e7bacb5d0785ff5650a5a23b143b84.tar.gz",
.hash = "N-V-__8AALNPTAg4NYYxg9JBYM-yGB8-T1iza-OvymI1uPJY",
.url = "https://github.com/google/boringssl/archive/79048f1f1d8e6b7f9ca59b95c24486c8149122a4.tar.gz",
.hash = "N-V-__8AAATcigwhLyJj3_Nkw_5-T9hOwowriPG-D3VVRVSd",
},
.nasm = .{
.url = "git+https://github.com/sno2/nasm.git#31622af89d7e90af49d2e610d7dcdf36f8e23c7a",
Expand Down
Loading
Loading