You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The build process is failing due to an incompatibility with the version of OpenSSL installed on the system. The project appears to require OpenSSL version 1.0.2s, but the system has OpenSSL version 3.3.1 installed. As a result, the build process is unable to locate the required OpenSSL libraries, leading to errors during compilation.
Steps to Reproduce:
Clone the project repository.
Navigate to the build directory.
Run cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug .. to generate the build files.
Run make -j 8 to build the project.
Expected Behavior:
The project should build successfully without any errors.
Actual Behavior:
The build process fails with errors related to missing OpenSSL libraries, specifically libssl.1.0.0.dylib.
Potential Solutions:
Update the project's build configuration to use the correct paths for OpenSSL version 3.3.1.
Install OpenSSL version 1.0.2s on the system and configure the build process to use this specific version.
Ensure compatibility with OpenSSL version 3.x or update the project to support the newer OpenSSL version.
Consult the project's documentation or community for guidance on resolving compatibility issues with OpenSSL.
The text was updated successfully, but these errors were encountered:
The build process is failing due to an incompatibility with the version of OpenSSL installed on the system. The project appears to require OpenSSL version 1.0.2s, but the system has OpenSSL version 3.3.1 installed. As a result, the build process is unable to locate the required OpenSSL libraries, leading to errors during compilation.
Steps to Reproduce:
Clone the project repository.
Navigate to the build directory.
Run cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug .. to generate the build files.
Run make -j 8 to build the project.
Expected Behavior:
The project should build successfully without any errors.
Actual Behavior:
The build process fails with errors related to missing OpenSSL libraries, specifically libssl.1.0.0.dylib.
Potential Solutions:
Update the project's build configuration to use the correct paths for OpenSSL version 3.3.1.
Install OpenSSL version 1.0.2s on the system and configure the build process to use this specific version.
Ensure compatibility with OpenSSL version 3.x or update the project to support the newer OpenSSL version.
Consult the project's documentation or community for guidance on resolving compatibility issues with OpenSSL.
The text was updated successfully, but these errors were encountered: