We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab3147e commit e659aceCopy full SHA for e659ace
Cargo.toml
@@ -34,11 +34,11 @@ exclude = [
34
[features]
35
default = ["cblas", "lapacke"]
36
37
+cache = []
38
cblas = []
39
lapacke = []
40
static = []
41
system = []
-shared-build-cache = []
42
43
[dev-dependencies]
44
libc = "0.2"
build.rs
@@ -32,7 +32,7 @@ fn main() {
32
_ => variable!("TARGET"),
33
};
env::remove_var("TARGET");
- let source = if feature!("SHARED_BUILD_CACHE") {
+ let source = if feature!("CACHE") {
PathBuf::from(format!("source_{}", target.to_lowercase()))
} else {
output.join(format!("source_{}", target.to_lowercase()))
0 commit comments