Skip to content

Commit 8512391

Browse files
committed
fix: link msvc dynamic by default
1 parent a093541 commit 8512391

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llama-cpp-sys-2/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ fn main() {
159159
let profile = env::var("LLAMA_LIB_PROFILE").unwrap_or("Release".to_string());
160160
let static_crt = env::var("LLAMA_STATIC_CRT")
161161
.map(|v| v == "1")
162-
.unwrap_or(true);
162+
.unwrap_or(false);
163163

164164
debug_log!("TARGET: {}", target);
165165
debug_log!("CARGO_MANIFEST_DIR: {}", manifest_dir);

0 commit comments

Comments
 (0)