Skip to content

Commit

Permalink
Merge pull request #82708 from hamishmack/openssl-musl
Browse files Browse the repository at this point in the history
openssl: Fix openssl build for x86_64-unknown-linux-musl
  • Loading branch information
matthewbauer committed Mar 22, 2020
2 parents b0c75e8 + 6040c11 commit 4327049
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/development/libraries/openssl/default.nix
Expand Up @@ -59,7 +59,9 @@ let
(stdenv.hostPlatform.parsed.cpu.bits != 32)
(toString stdenv.hostPlatform.parsed.cpu.bits)}"
else if stdenv.hostPlatform.isLinux
then "./Configure linux-generic${toString stdenv.hostPlatform.parsed.cpu.bits}"
then (if stdenv.hostPlatform.isx86_64
then "./Configure linux-x86_64"
else "./Configure linux-generic${toString stdenv.hostPlatform.parsed.cpu.bits}")
else if stdenv.hostPlatform.isiOS
then "./Configure ios${toString stdenv.hostPlatform.parsed.cpu.bits}-cross"
else
Expand Down

0 comments on commit 4327049

Please sign in to comment.