Marco Magdy
Marco Magdy
The problem is I need to reproduce the problem and I haven't been able to so far. What version of libcurl are you using? If a newer version of libcurl...
Try building the latest release of libcurl from source and install it somewhere on your system that doesn't conflict with your OS (pass --prefix /home//my-libcurl-install to the configure command) and...
That environment variable is set by AWS. See https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html#configuration-envvars-runtime I am not 100% sure how that environment variable is empty for you.
Can you paste the logs from cloud watch?
The logs show the AWS SDK attempting to read configuration from the local filesystem. >[INFO] 2021-04-21 10:31:29.876 ProfileConfigFileAWSCredentialsProvider [140060645824192] Setting provider to read credentials from /home/sbx_user1051/.aws/credentials for credentials file and...
Note that if you build with Clang and GNU's ld with LTO turned on, you are able to produce a shared-library (.so file) for the runtime just fine.
Moreover, if you enable LTO **in the app**, GNU's ld links it all just fine. I just tried it. If you do _not_ enable LTO in the app, then yes,...
I think the right thing to do at this point is: 1. Document that LTO must to be turned on for the whole binary (if you're building the runtime as...
Thank you for your patience and for following up.
I'll try to write up something in the next few days.