aboutsummaryrefslogtreecommitdiff
path: root/vendor
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2026-01-06 12:01:15 +0000
committerGitHub <noreply@github.com>2026-01-06 12:01:15 +0000
commit94cc5d9e6193389bc59da709d08458e3f506abd4 (patch)
tree4c1b44e7e619401550fb11b2e91b2338cc9c037e /vendor
parent4729b761a3ddb26bdbd9ea190f0db70f0a9289f5 (diff)
parent377a76bb15c14fb1d37ddd0facf4d925cec9f8c9 (diff)
Merge pull request #6099 from figuerom16/master
vendor:compress/lz4 wasn't finding lz4 for Non-Windows targets.
Diffstat (limited to 'vendor')
-rw-r--r--vendor/compress/lz4/lz4.odin2
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"