-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
GH-38861: [C++] Add missing "-framework Security" to Libs.private in arrow.pc #38869
Conversation
|
515c935
to
5de4a48
Compare
@github-actions crossbow submit r-binary-packages |
This comment was marked as outdated.
This comment was marked as outdated.
…te in arrow.pc It's required only when: * We use bundled aws-sdk-cpp. * We use static library for Apache Arrow C++. Because bundled aws-sdk-cpp uses Security framework.
5de4a48
to
8b50d33
Compare
@github-actions crossbow submit r-binary-packages |
Revision: 8b50d33 Submitted crossbow builds: ursacomputing/crossbow @ actions-9680384154
|
@jeroen Could you try this? You can download binaries from https://github.com/ursacomputing/crossbow/actions/runs/6971635888#artifacts . |
Thanks, lgtm |
@github-actions crossbow submit -g cpp |
This comment was marked as outdated.
This comment was marked as outdated.
Thanks for confirming this. |
Revision: 8b50d33 Submitted crossbow builds: ursacomputing/crossbow @ actions-ef38e34475 |
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.
test-conda-cpp-valgrind
has been failing for a month so not relevant here. 👍
After merging your PR, Conbench analyzed the 6 benchmarking runs that have been run so far on merge-commit eb5de18. There were 2 benchmark results indicating a performance regression:
The full Conbench report has more details. It also includes information about 1 possible false positive for unstable benchmarks that are known to sometimes produce them. |
…arrow.pc (#38869) ### Rationale for this change It's required only when: * We use bundled aws-sdk-cpp. * We use static library for Apache Arrow C++. Because bundled aws-sdk-cpp uses Security framework. ### What changes are included in this PR? Add `-framework Security` to `Libs.private` only on the condition. ### Are these changes tested? Yes. ### Are there any user-facing changes? Yes. * Closes: #38861 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Jacob Wujciak-Jens <[email protected]>
…te in arrow.pc (apache#38869) ### Rationale for this change It's required only when: * We use bundled aws-sdk-cpp. * We use static library for Apache Arrow C++. Because bundled aws-sdk-cpp uses Security framework. ### What changes are included in this PR? Add `-framework Security` to `Libs.private` only on the condition. ### Are these changes tested? Yes. ### Are there any user-facing changes? Yes. * Closes: apache#38861 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Jacob Wujciak-Jens <[email protected]>
Rationale for this change
It's required only when:
Because bundled aws-sdk-cpp uses Security framework.
What changes are included in this PR?
Add
-framework Security
toLibs.private
only on the condition.Are these changes tested?
Yes.
Are there any user-facing changes?
Yes.
-framework Security
on MacOS #38861