mirror of
https://github.com/vosen/ZLUDA.git
synced 2025-04-21 17:08:49 +03:00

This is very incomplete. Just enough code to emit LLVM bitcode and continue further development
21 lines
696 B
Rust
Vendored
21 lines
696 B
Rust
Vendored
use std::env::VarError;
|
|
use std::{env, path::PathBuf};
|
|
|
|
fn main() -> Result<(), VarError> {
|
|
if cfg!(windows) {
|
|
println!("cargo:rustc-link-lib=dylib=amdhip64_6");
|
|
let env = env::var("CARGO_CFG_TARGET_ENV")?;
|
|
if env == "msvc" {
|
|
let mut path = PathBuf::from(env::var("CARGO_MANIFEST_DIR")?);
|
|
path.push("lib");
|
|
println!("cargo:rustc-link-search=native={}", path.display());
|
|
} else {
|
|
println!("cargo:rustc-link-search=native=C:\\Windows\\System32");
|
|
};
|
|
} else {
|
|
println!("cargo:rustc-link-lib=dylib=amdhip64");
|
|
println!("cargo:rustc-link-search=native=/opt/rocm/lib/");
|
|
}
|
|
Ok(())
|
|
}
|