File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -52,11 +52,11 @@ def build(executor)
52
52
executor . system "curl" ,
53
53
"-o" ,
54
54
"#{ product_build_dir } /config/config.guess" ,
55
- "https://git.savannah.gnu.org/gitweb/?p= config.git;a=blob_plain;f=config. guess;hb=HEAD "
55
+ "https://cdn.jsdelivr.net/gh/gcc-mirror/gcc@master/ config.guess"
56
56
executor . system "curl" ,
57
57
"-o" ,
58
58
"#{ product_build_dir } /config/config.sub" ,
59
- "https://git.savannah.gnu.org/gitweb/?p= config.git;a=blob_plain;f=config. sub;hb=HEAD "
59
+ "https://cdn.jsdelivr.net/gh/gcc-mirror/gcc@master/ config.sub"
60
60
61
61
executor . system "./configure" , *configure_args , chdir : product_build_dir
62
62
executor . system "make" ,
Original file line number Diff line number Diff line change @@ -84,6 +84,7 @@ def root
84
84
85
85
# Retrieves the alias definitions for the Ruby sources.
86
86
def self . build_source_aliases ( root )
87
+ # @type var sources: Hash[string, RubyWasm::Packager::build_source]
87
88
sources = {
88
89
"head" => {
89
90
type : "github" ,
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ class RubyWasm::Packager
17
17
18
18
def root : () -> string
19
19
20
- type build_source = Hash[Symbol, (String | Array[String])]
20
+ type build_source = Hash[Symbol, (string | Array[String])]
21
21
def self.build_source_aliases : (string root) -> Hash[string, build_source]
22
22
23
23
ALL_DEFAULT_EXTS: string
You can’t perform that action at this time.
0 commit comments