the80srobot commented on issue #37146: URL: https://github.com/apache/arrow/issues/37146#issuecomment-1677214635
I forgot to mention, this is on aarch64. So I'm not sure why `-lxtl` would even be generated, because xtl is a header-only library. There is no explicit dependency on it, but I think it comes in via xsimd. The xsimd CMakeLists.txt used `find_package`: ``` find_package(xtl 0.7.0 REQUIRED) target_link_libraries(xsimd INTERFACE xtl) ``` So many questions: 1. Why does CMake generate -lxtl for an INTERFACE dependency? 2. Why, oh why isn't xtl just vendored under xsimd? 3. Why did this just break a few hours ago? -- 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]
