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 d8c15ed commit f97ac55Copy full SHA for f97ac55
src/lib.rs
@@ -54,6 +54,7 @@ impl Build {
54
match &self.host.as_ref().expect("HOST dir not set")[..] {
55
"x86_64-unknown-dragonfly" => Command::new("gmake"),
56
"x86_64-unknown-freebsd" => Command::new("gmake"),
57
+ "x86_64-sun-solaris" => Command::new("gmake"),
58
_ => Command::new("make"),
59
}
60
@@ -180,6 +181,7 @@ impl Build {
180
181
"x86_64-unknown-linux-gnu" => "linux-x86_64",
182
"x86_64-unknown-linux-musl" => "linux-x86_64",
183
"x86_64-unknown-netbsd" => "BSD-x86_64",
184
+ "x86_64-sun-solaris" => "solaris64-x86_64-gcc",
185
"wasm32-unknown-emscripten" => "gcc",
186
"wasm32-unknown-unknown" => "gcc",
187
"aarch64-apple-ios" => "ios64-cross",
0 commit comments