From 4e1d4faf91af2f322991eaa9ad6bc923cf5f1517 Mon Sep 17 00:00:00 2001 From: Aaron Kaiser Date: Sat, 15 Mar 2025 14:08:22 +0100 Subject: [PATCH] fix: use correct mlkem library name --- build.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.rs b/build.rs index adbef09..d97d3ee 100644 --- a/build.rs +++ b/build.rs @@ -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()