mirror of
https://github.com/arnaucube/poulpy.git
synced 2026-02-10 05:06:44 +01:00
`gen` is reserved keyword in 2024. So modigied `galois_element` function in base2k/src/module.rs for compat
14 lines
332 B
Rust
14 lines
332 B
Rust
use std::path::absolute;
|
|
|
|
fn main() {
|
|
println!(
|
|
"cargo:rustc-link-search=native={}",
|
|
absolute("spqlios-arithmetic/build/spqlios")
|
|
.unwrap()
|
|
.to_str()
|
|
.unwrap()
|
|
);
|
|
println!("cargo:rustc-link-lib=static=spqlios");
|
|
// println!("cargo:rustc-link-lib=dylib=spqlios")
|
|
}
|