mirror of
https://github.com/vosen/ZLUDA.git
synced 2025-06-02 05:29:15 +03:00
8 lines
190 B
Rust
8 lines
190 B
Rust
use std::env::VarError;
|
|
|
|
fn main() -> Result<(), VarError> {
|
|
println!("cargo:rustc-link-lib=dylib=amdhip64");
|
|
println!("cargo:rustc-link-search=native=/opt/rocm/lib/");
|
|
Ok(())
|
|
}
|