File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -158,6 +158,9 @@ pub enum Target {
158158 // CSKY
159159 CSKY ,
160160 CK860FV ,
161+
162+ // WebAssembly/Emscripten:
163+ WASM128_GENERIC ,
161164}
162165
163166impl 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 ( ) ,
Original file line number Diff line number Diff 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
1010pub fn openblas_source_url ( ) -> String {
1111 format ! (
You can’t perform that action at this time.
0 commit comments