-
I cannot build the AWS SDK for C++, cmake requires make, make requires MinGW-w64... why pre-compiled libraries are not provided? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
These are common dependencies required for building C++ projects. While you can find this SDK on some C++ package managers, that is not the recommended way to consume it. We recommend that you consume this sdk from source(GitHub) and then compile it to fit your exact needs. If you haven't already, please check out our developer guide. If you have any questions about building or using this SDK, feel free to ask. Additionally, here is a Reddit thread that discusses some good points as to why there aren't many package managers (with pre-compiled libraries) in the C++ world. |
Beta Was this translation helpful? Give feedback.
-
Thank you for your reply, the "Guide" is incomplete, installing cmake alone is not sufficient to compile out of the box making the AWS Readme Guide: incomplete. If one install cmake alone and run the cmake config step you will get the following error: CXX Compiler ABI info - failed Once you run "cmake .." on mingw64 it will still fail saying you need Python3 and ZLIB, which are both missing. And 48hs later of troubleshooting we are still stuck and have not been able to start developing our app. |
Beta Was this translation helpful? Give feedback.
These are common dependencies required for building C++ projects. While you can find this SDK on some C++ package managers, that is not the recommended way to consume it. We recommend that you consume this sdk from source(GitHub) and then compile it to fit your exact needs.
If you haven't already, please check out our developer guide.
If you have any questions about building or using this SDK, feel free to ask.
Additionally, here is a Reddit thread that discusses some good points as to why there aren't many package managers (with pre-compiled libraries) in the C++ world.