We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0d59098 + ce27172 commit 7d9dc05Copy full SHA for 7d9dc05
llama-cpp-sys-2/Cargo.toml
@@ -32,6 +32,7 @@ include = [
32
"/llama.cpp/llama.cpp",
33
"/llama.cpp/llama.h",
34
"/llama.cpp/unicode.h",
35
+ "/llama.cpp/unicode.cpp",
36
]
37
38
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
llama-cpp-sys-2/build.rs
@@ -156,7 +156,8 @@ fn main() {
156
.define("_XOPEN_SOURCE", Some("600"))
157
.include("llama.cpp")
158
.std("c++11")
159
- .file("llama.cpp/llama.cpp");
+ .file("llama.cpp/llama.cpp")
160
+ .file("llama.cpp/unicode.cpp");
161
162
// Remove debug log output from `llama.cpp`
163
let is_release = env::var("PROFILE").unwrap() == "release";
0 commit comments