Replies: 4 comments 3 replies
-
What version of openssl are you using? It looks like one of the tests is failing, one of the possible workarounds for that is to disable the tests. |
Beta Was this translation helpful? Give feedback.
-
Hi! Thanks for the response.
UPD:
whereas simple minimal project runs ok. |
Beta Was this translation helpful? Give feedback.
-
Adding |
Beta Was this translation helpful? Give feedback.
-
Yes, the problem is in grpc. Here is the minimal project which crashes on startup: CMakeLists.txt
main.cpp
If I build and run it on the Nvidia Jetson-AGX with a statically built aws s3 I get
The mind-blowing thing is, if I comment Do you have any idea how to fix it, please? |
Beta Was this translation helpful? Give feedback.
-
Hello! We need to link against s3 statically, so we don't need to install it on all of our servers. So, I configured aws sdk with a command
cmake ../aws-sdk-cpp -DCMAKE_BUILD_TYPE=Debug -DCMAKE_PREFIX_PATH=/usr/local/ -DCMAKE_INSTALL_PREFIX=/usr/local/ -DBUILD_ONLY="s3" -DBUILD_SHARED_LIBS=OFF
, butmake
command failed withThe same happens if I add
-DFORCE_SHARED_CRT=OFF
.You even mention this issue in your cmake file: https://github.com/aws/aws-sdk-cpp/blob/main/CMakeLists.txt#L194. Is there a work around? We couldn't find one
Beta Was this translation helpful? Give feedback.
All reactions