-
Notifications
You must be signed in to change notification settings - Fork 4k
ARROW-14708: [C++] Adding missing abseil dependencies to enable static flight build #11889
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
Closed
Closed
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
d6d7d09
cmake changes and helper scripts
rok b6e8a23
ArrowConfig.cmake.in
rok 26d27e6
Removing -larrow_bundled_dependencies
rok 95c6df8
Review feedback
rok aa4f1ca
Adding abseils
rok c073c60
Remove list-absl-libraries.sh
rok 25b4060
minor change
rok 61ca815
Review feedback and macOS fix for ARROW_BUILD_EXAMPLES=ON
rok fa7fb39
Review feedback
rok b4c118b
Review feedback
rok File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3412,6 +3412,14 @@ macro(build_absl_once) | |
| absl::raw_logging_internal | ||
| absl::strings | ||
| absl::time_zone) | ||
| if(APPLE) | ||
| # This is due to upstream absl::cctz issue | ||
| # https://github.com/abseil/abseil-cpp/issues/283 | ||
| find_library(CoreFoundation CoreFoundation) | ||
| set_property(TARGET absl::time | ||
| APPEND | ||
| PROPERTY INTERFACE_LINK_LIBRARIES ${CoreFoundation}) | ||
| endif() | ||
| set_property(TARGET absl::type_traits PROPERTY INTERFACE_LINK_LIBRARIES absl::config) | ||
| set_property(TARGET absl::utility | ||
| PROPERTY INTERFACE_LINK_LIBRARIES absl::base_internal absl::config | ||
|
|
@@ -3584,13 +3592,28 @@ macro(build_grpc) | |
| INTERFACE_INCLUDE_DIRECTORIES "${GRPC_INCLUDE_DIR}") | ||
|
|
||
| set(GRPC_GPR_ABSL_LIBRARIES | ||
| absl::bad_optional_access | ||
| absl::base | ||
| absl::statusor | ||
| absl::status | ||
| absl::cord | ||
| absl::debugging_internal | ||
| absl::demangle_internal | ||
| absl::graphcycles_internal | ||
| absl::int128 | ||
| absl::malloc_internal | ||
| absl::raw_logging_internal | ||
| absl::spinlock_wait | ||
| absl::stacktrace | ||
| absl::status | ||
| absl::statusor | ||
| absl::strings | ||
| absl::strings_internal | ||
| absl::str_format_internal | ||
| absl::symbolize | ||
| absl::synchronization | ||
| absl::time) | ||
| absl::throw_delegate | ||
| absl::time | ||
| absl::time_zone) | ||
|
||
|
|
||
| add_library(gRPC::gpr STATIC IMPORTED) | ||
| set_target_properties(gRPC::gpr | ||
| PROPERTIES IMPORTED_LOCATION "${GRPC_STATIC_LIBRARY_GPR}" | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.