diff options
| author | J08nY | 2024-03-27 19:00:46 +0100 |
|---|---|---|
| committer | J08nY | 2024-03-27 19:00:46 +0100 |
| commit | 5f58325077f2fa6b999ae3455b45334785b94f76 (patch) | |
| tree | 7f006016bf858f54503da0aa0af52b21a7205b4b /.github/workflows | |
| parent | 1b26fc1298ba3dae380f7608ecffb508e1c3687d (diff) | |
| download | ECTester-5f58325077f2fa6b999ae3455b45334785b94f76.tar.gz ECTester-5f58325077f2fa6b999ae3455b45334785b94f76.tar.zst ECTester-5f58325077f2fa6b999ae3455b45334785b94f76.zip | |
Fix LibreSSL build (they removed binary curves).
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d3e45cf..df46cda 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -134,20 +134,20 @@ jobs: run: | # ------------ Build BoringSSL ------------ cd ext/boringssl - cmake -DBUILD_SHARED_LIBS=1 -Bbuild + cmake -DBUILD_SHARED_LIBS=1 -Bbuild -G "Unix Makefiles" cd build make -j4 crypto cd ../../.. # ------------ Build LibreSSL ------------ cd ext/libressl ./autogen.sh - cmake -DBUILD_SHARED_LIBS=ON -Bbuild + cmake -DBUILD_SHARED_LIBS=ON -Bbuild -G "Unix Makefiles" cd build make -j4 crypto cd ../../.. # ------------ Build IPP-crypto ------------ cd ext/ipp-crypto - CC=clang CXX=clang++ cmake CMakeLists.txt -Bbuild -DARCH=intel64 + CC=clang CXX=clang++ cmake CMakeLists.txt -Bbuild -DARCH=intel64 -G "Unix Makefiles" cd build make -j4 cd ../../.. |
