-
Hi, we built our application with sdk
But after moving to
If I include
and so on. My build option (same for building
Why the new version looks for other libraries? Is there any new build options that I need? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
We changed how this sdk depends on libcrypto back in May (1.11.283 is from March). We now depend on aws-crt-cpp for libcrypto (aws-crt-cpp -> aws-c-common -> aws-c-cal). This simplifies the dependencies for this sdk as it already depended on aws-crt-cpp. You can find the PR here with the changes. As for why you're are getting a runtime error, you might need to git clone the submodules. You can update an existing clone with: git submodule update --init --recursive Detailed build steps can be found here. Please let me know if this doesn't fix it for you or if you have any other questions. |
Beta Was this translation helpful? Give feedback.
-
Thanks for your reply. We do have submodules, after build, we have following libs generated:
We only need to access s3 and only want include necessary libs in our container. So are you saying we need and only need following to be able to access s3?
|
Beta Was this translation helpful? Give feedback.
-
It seems needs more libs. after adding crt, c-common, c-cal libs mentioned above, it complained about |
Beta Was this translation helpful? Give feedback.
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
It seems needs more libs. after adding crt, c-common, c-cal libs mentioned above, it complained about
libaws-c-event-stream.so.1.0.0
.It worked after I included all built libs in my containers