-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ammending meson.build files to fix linking issue - issue38 #39
Conversation
@@ -15,7 +15,7 @@ symbol_export_define = ['-DGST_EXPORTS'] | |||
|
|||
credentials = library('gstawscredentials-@0@'.format(apiversion), | |||
['gstawscredentials.cpp'], | |||
dependencies : [aws_cpp_sdk_sts_dep, gst_dep], | |||
dependencies : [aws_cpp_sdk_sts_dep, gst_dep, aws_c_common_dep, aws_crt_cpp_dep], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just out of curiosity; why is that needed? isn't it an implicit dependency of aws-cpp-sdk-sts
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I’ve spoken with the engineer who requested this, and they advised it's because they're building with yocto for embedded. They tried to rebuild without the dependencies, and it still fails. For context this is where they have their patch in their repo.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have an open issue with the AWS SDK to investigate this see aws/aws-sdk-cpp#2643
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Issue #, if available:
Description of changes:
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.