fix: use correct mlkem library name

This commit is contained in:
2025-03-15 14:08:22 +01:00
parent 67eaa22bf0
commit 4e1d4faf91

View File

@@ -19,7 +19,8 @@ fn main() {
// Tell cargo to tell rustc to link our `hello` library. Cargo will
// automatically know it must look for a `libhello.a` file.
println!("cargo:rustc-link-lib=mlkem-native/test/build");
println!("cargo:rustc-link-lib=mlkem768");
println!("cargo:rustc-link-lib=mlkem1024");
let mlkem_native_path = PathBuf::from("mlkem-native")
.canonicalize()