diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-04-29 16:57:40 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2024-05-08 19:37:29 -0700 |
| commit | 62381011e0dd692ec6bb30d14e0d5e2f6ec4d5d5 (patch) | |
| tree | 19e086bf89c1ce3ed6ce8cd88ca3d99ae05cf6fe /build.zig | |
| parent | c71943f1253a2e4f82fae84d319b8e682afa7061 (diff) | |
| download | zig-62381011e0dd692ec6bb30d14e0d5e2f6ec4d5d5.tar.gz zig-62381011e0dd692ec6bb30d14e0d5e2f6ec4d5d5.zip | |
apparently LLVM depends on ws2_32.dll now
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -334,6 +334,9 @@ pub fn build(b: *std.Build) !void { } if (target.result.os.tag == .windows) { inline for (.{ exe, check_case_exe }) |artifact| { + // LLVM depends on networking as of version 18. + artifact.linkSystemLibrary("ws2_32"); + artifact.linkSystemLibrary("version"); artifact.linkSystemLibrary("uuid"); artifact.linkSystemLibrary("ole32"); |
