ivanmejiarocha / micro-service

sample micro-service in C++
MIT License
263 stars 129 forks source link

Build Error Due to Incompatibility with OpenSSL Version #39

Open kapilsharma-gts opened 4 months ago

kapilsharma-gts commented 4 months ago

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.