diff options
| author | Tetralux <tetraluxonpc@gmail.com> | 2025-12-10 22:40:32 +0000 |
|---|---|---|
| committer | Tetralux <tetraluxonpc@gmail.com> | 2025-12-10 22:40:32 +0000 |
| commit | f9dc92ef40b2a788ff4f5748a3d052d6889cbd1d (patch) | |
| tree | 42d72b88169a140bd31cfbdc32c5ed3ddfb530fd /vendor/compress | |
| parent | fefc4b9978fba97011ac85ecae52b41995b96161 (diff) | |
[compress/lz4] Ensure libc is linked on Windows
Diffstat (limited to 'vendor/compress')
| -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" |