diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-12-11 00:15:30 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-11 00:15:30 +0000 |
| commit | 6aedcf94d9fc67fd40c8e1154b5f0dcef830b509 (patch) | |
| tree | 048ba2154e82c544ac2f6ccd9240298b419878bc | |
| parent | 3fc0320449a82b769cb8e9eda0d767f6ffcd7c4f (diff) | |
| parent | f9dc92ef40b2a788ff4f5748a3d052d6889cbd1d (diff) | |
Merge pull request #6008 from Tetralux/tetra/fix-lz4
[compress/lz4] Ensure libc is linked on Windows
| -rw-r--r-- | vendor/compress/lz4/lz4.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/compress/lz4/lz4.odin b/vendor/compress/lz4/lz4.odin index 35acaeb5a..19476c8c4 100644 --- a/vendor/compress/lz4/lz4.odin +++ b/vendor/compress/lz4/lz4.odin @@ -3,7 +3,7 @@ package vendor_compress_lz4 when ODIN_OS == .Windows { @(extra_linker_flags="/NODEFAULTLIB:libcmt") - foreign import lib "lib/liblz4_static.lib" + foreign import lib { "lib/liblz4_static.lib", "system:ucrt.lib" } } import "core:c" |