Skip to content

Commit 266386a

Browse files
committed
Rollup merge of rust-lang#48489 - glaubitz:x32-linux, r=alexcrichton
bootstrap: Add openssl configuration for x86_64-unknown-linux-gnux32 OpenSSL provides a native configuration for x86_64-unknown-linux-gnux32: > https://github.com/openssl/openssl/blob/master/Configurations/10-main.conf#L810 Let's use it.
2 parents c9b6dca + 0b6583e commit 266386a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/bootstrap/native.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -492,6 +492,7 @@ impl Step for Openssl {
492492
"x86_64-unknown-freebsd" => "BSD-x86_64",
493493
"x86_64-unknown-dragonfly" => "BSD-x86_64",
494494
"x86_64-unknown-linux-gnu" => "linux-x86_64",
495+
"x86_64-unknown-linux-gnux32" => "linux-x32",
495496
"x86_64-unknown-linux-musl" => "linux-x86_64",
496497
"x86_64-unknown-netbsd" => "BSD-x86_64",
497498
_ => panic!("don't know how to configure OpenSSL for {}", target),

0 commit comments

Comments
 (0)