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 bf61466 commit 9305c96Copy full SHA for 9305c96
openblas-build/src/check.rs
@@ -104,7 +104,6 @@ impl MakeConf {
104
/// - Global "T" symbols in the text (code) section of library using `nm -g` external command.
105
#[derive(Debug, Clone)]
106
pub struct LibInspect {
107
- path: PathBuf,
108
pub libs: Vec<String>,
109
pub symbols: Vec<String>,
110
}
@@ -160,11 +159,7 @@ impl LibInspect {
160
159
.collect();
161
libs.sort();
162
163
- Ok(LibInspect {
164
- path: path.into(),
165
- libs,
166
- symbols,
167
- })
+ Ok(LibInspect { libs, symbols })
168
169
170
pub fn has_cblas(&self) -> bool {
0 commit comments