File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,11 @@ impl Build {
52
52
53
53
fn cmd_make ( & self ) -> Command {
54
54
let host = & self . host . as_ref ( ) . expect ( "HOST dir not set" ) [ ..] ;
55
- if host. contains ( "dragonfly" ) || host. contains ( "freebsd" ) || host. contains ( "solaris" ) {
55
+ if host. contains ( "dragonfly" )
56
+ || host. contains ( "freebsd" )
57
+ || host. contains ( "solaris" )
58
+ || host. contains ( "illumos" )
59
+ {
56
60
Command :: new ( "gmake" )
57
61
} else {
58
62
Command :: new ( "make" )
@@ -178,6 +182,7 @@ impl Build {
178
182
"x86_64-pc-windows-msvc" => "VC-WIN64A" ,
179
183
"x86_64-unknown-freebsd" => "BSD-x86_64" ,
180
184
"x86_64-unknown-dragonfly" => "BSD-x86_64" ,
185
+ "x86_64-unknown-illumos" => "solaris64-x86_64-gcc" ,
181
186
"x86_64-unknown-linux-gnu" => "linux-x86_64" ,
182
187
"x86_64-unknown-linux-musl" => "linux-x86_64" ,
183
188
"x86_64-unknown-netbsd" => "BSD-x86_64" ,
You can’t perform that action at this time.
0 commit comments