Add missing c++ and gmp libraries.

This commit is contained in:
Alejandro Cabeza Romero 2026-04-27 18:50:22 +02:00
parent 62c0c9fd0a
commit 0f169eecb1
No known key found for this signature in database
GPG Key ID: DA3D14AE478030FD

View File

@ -83,4 +83,6 @@ fn main() {
let lib_dir = lib_dir.to_str().expect("Failed to convert the library directory path to a string");
println!("cargo:rustc-link-search=native={lib_dir}");
println!("cargo:rustc-link-lib=static={CIRCUIT_NAME}");
println!("cargo:rustc-link-lib=stdc++");
println!("cargo:rustc-link-lib=gmp");
}