Skip to content

Commit d8707a4

Browse files
authored
Merge pull request #150 from Dirreke/bump-openblas
Bump openblas to 0.3.32
2 parents 5251a81 + 4c8e22b commit d8707a4

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

openblas-build/src/build.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,9 @@ pub enum Target {
158158
// CSKY
159159
CSKY,
160160
CK860FV,
161+
162+
// WebAssembly/Emscripten:
163+
WASM128_GENERIC,
161164
}
162165

163166
impl FromStr for Target {
@@ -309,6 +312,9 @@ impl FromStr for Target {
309312
"csky" => Self::CSKY,
310313
"ck860fv" => Self::CK860FV,
311314

315+
// WebAssembly/Emscripten
316+
"wasm128_generic" => Self::WASM128_GENERIC,
317+
312318
_ => {
313319
return Err(Error::UnsupportedTarget {
314320
target: s.to_string(),

openblas-build/src/download.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use ureq::{
55
tls::{TlsConfig, TlsProvider},
66
};
77

8-
const OPENBLAS_VERSION: &str = "0.3.31";
8+
const OPENBLAS_VERSION: &str = "0.3.32";
99

1010
pub fn openblas_source_url() -> String {
1111
format!(

0 commit comments

Comments
 (0)