'Problem in building AWS SDK C++ EC2 library
i have a problem in building the aws c++ sdk Ec2 library on linux. I followed the steps bellow:
- git clone --recurse-submodules https://github.com/aws/aws-sdk-cpp
- mkdir sdk_build
- cd sdk_build
- cmake ../aws-sdk-cpp -DCMAKE_BUILD_TYPE=Debug -DBUILD_ONLY="ec2"
- make
The compilation is panding at this point:
Solution 1:[1]
I had the same problem compiling on a machine with 3Gb of memory and I could see that it started using the (much slower) swap, so it would run for 12h+ without results.
So make sure to meet the minimum requirements:
4GB of RAM is required to build some of the larger clients.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Heye Everts |