raulcd commented on PR #48333: URL: https://github.com/apache/arrow/pull/48333#issuecomment-3636512854
The problem is that it stills tries to install them and as we are not installing absl those can't be found. ``` -- Configuring done (56.2s) CMake Error: install(EXPORT "google_cloud_cpp_common-targets" ...) includes target "google_cloud_cpp_common" which requires target "absl_base" that is not in any export set. CMake Error: install(EXPORT "google_cloud_cpp_common-targets" ...) includes target "google_cloud_cpp_common" which requires target "absl_memory" that is not in any export set. CMake Error: install(EXPORT "google_cloud_cpp_common-targets" ...) includes target "google_cloud_cpp_common" which requires target "absl_optional" that is not in any export set. CMake Error: install(EXPORT "google_cloud_cpp_common-targets" ...) includes target "google_cloud_cpp_common" which requires target "absl_span" that is not in any export set. CMake Error: install(EXPORT "google_cloud_cpp_common-targets" ...) includes target "google_cloud_cpp_common" which requires target "absl_str_format" that is not in any export set. CMake Error: install(EXPORT "google_cloud_cpp_common-targets" ...) includes target "google_cloud_cpp_common" which requires target "absl_time" that is not in any export set. CMake Error: install(EXPORT "google_cloud_cpp_common-targets" ...) includes target "google_cloud_cpp_common" which requires target "absl_variant" that is not in any export set. CMake Error: install(EXPORT "google_cloud_cpp_rest_internal-targets" ...) includes target "google_cloud_cpp_rest_internal" which requires target "absl_span" that is not in any export set. CMake Error: install(EXPORT "storage-targets" ...) includes target "google_cloud_cpp_storage" which requires target "absl_cord" that is not in any export set. CMake Error: install(EXPORT "storage-targets" ...) includes target "google_cloud_cpp_storage" which requires target "absl_memory" that is not in any export set. CMake Error: install(EXPORT "storage-targets" ...) includes target "google_cloud_cpp_storage" which requires target "absl_strings" that is not in any export set. CMake Error: install(EXPORT "storage-targets" ...) includes target "google_cloud_cpp_storage" which requires target "absl_time" that is not in any export set. CMake Error: install(EXPORT "storage-targets" ...) includes target "google_cloud_cpp_storage" which requires target "absl_variant" that is not in any export set. ``` If I install abseil the problem is that those are bundled (along with crc32c and google cloud cpp) on the libarrow_bundled libraries. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
