sbaluja
sbaluja
A reference accessor has been added in [1.11.609](https://github.com/aws/aws-sdk-cpp/releases/tag/1.11.609). This should avoid the extra copy, and suit your use case. Thanks
As of [1.11.655](https://github.com/aws/aws-sdk-cpp/releases/tag/1.11.655), installation will include .pdb files. This change affects all aws-sdk-cpp-xxx libraries but does not extend to dependencies we consume.
@oleg-boulanov The `TARGET_PDB_FILE` specifier only works for shared libraries or executables. I've made a PR (#3567) to address this bug, but for now this is failing due to `-DBUILD_SHARED_LIBS=OFF`.
Fix has been merged and will be apart of today's release.
The `TARGET_PDB_FILE` specifier only works for shared libraries or executables so `-DBUILD_SHARED_LIBS=OFF` will not install the pdb files. The current fix only installs aws-cpp-sdk-xxx PDB's, and does not extend to...
Thanks for bringing this up. This is on our radar and something we will address in the future, as the fix/refactor is not trivial to resolve this race condition. In...
If this issue is impacting you I'm assuming your application is multithreaded and sharing a single SDK instance. Unless you're initializing and shutting down the SDK inside each thread (which...
Curious about your current toolchain, the sdk requires libcurl and a libcrypto (openssl/aws-lc) dependency, how are you getting those? are you building them yourself or getting them via other means?
I've set up a small cmake project called with your code example. Building and running this in docker, I'm correctly seeing the `Access Denied` output for all threads. See attached....