sgx-sdk: pin to openssl_1_1
Currently, the sgx-sdk.runTestsHW attribute fails to build due to linking errors. It looks like OpenSSL versions are mixed up. And indeed sgx-sdk pulls in OpenSSL 3 while ipp-crypto pulls in OpenSSL 1.1. Fix by pinning the OpenSSL version for the SGX SDK to OpenSSL 1.1 as well.
This commit is contained in:
parent
0f482d4d0d
commit
2c8407089b
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@
|
|||
, nasm
|
||||
, ocaml
|
||||
, ocamlPackages
|
||||
, openssl
|
||||
, openssl_1_1
|
||||
, perl
|
||||
, python3
|
||||
, texinfo
|
||||
|
@ -84,7 +84,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
buildInputs = [
|
||||
libtool
|
||||
openssl
|
||||
openssl_1_1
|
||||
];
|
||||
|
||||
BINUTILS_DIR = "${binutils}/bin";
|
||||
|
|
Loading…
Reference in a new issue