diff options
| author | figuerom16 <figuerom16@gmail.com> | 2026-01-04 20:04:57 -0800 |
|---|---|---|
| committer | figuerom16 <figuerom16@gmail.com> | 2026-01-04 20:04:57 -0800 |
| commit | 377a76bb15c14fb1d37ddd0facf4d925cec9f8c9 (patch) | |
| tree | 1008faf3593fce8e81deeffda6dfc079e6130f4e /vendor | |
| parent | 7fa05f16bfc55a3380c758bdedaf3da351774713 (diff) | |
Update lz4.odin: foreign import for linux
Diffstat (limited to 'vendor')
| -rw-r--r-- | vendor/compress/lz4/lz4.odin | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vendor/compress/lz4/lz4.odin b/vendor/compress/lz4/lz4.odin index 19476c8c4..f3b0fcb0d 100644 --- a/vendor/compress/lz4/lz4.odin +++ b/vendor/compress/lz4/lz4.odin @@ -4,6 +4,8 @@ package vendor_compress_lz4 when ODIN_OS == .Windows { @(extra_linker_flags="/NODEFAULTLIB:libcmt") foreign import lib { "lib/liblz4_static.lib", "system:ucrt.lib" } +} else { + foreign import lib "system:lz4" } import "core:c" |