Skip to content

Commit

Permalink
CI: Ensure that CMake finds the right OpenSSL libs
Browse files Browse the repository at this point in the history
Due to this minor oversight, the build script moved the generated artifacts and CMake subsequently failed to find them, silently falling back to the incorrect system-provided version. This then lead to libcurl using the wrong headers because CMake "found" them elsewhere, without realizing the versions didn't match or generating any warnings.
  • Loading branch information
rdw-software committed Jan 15, 2025
1 parent 8e15306 commit 3a8e8e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deps/openssl-windowsbuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ make -j $NUM_PARALLEL_JOBS

cd -

mv $OPENSSL_DIR/libcrypto.a $BUILD_DIR
mv $OPENSSL_DIR/libssl.a $BUILD_DIR
cp $OPENSSL_DIR/libcrypto.a $BUILD_DIR
cp $OPENSSL_DIR/libssl.a $BUILD_DIR

0 comments on commit 3a8e8e7

Please sign in to comment.