Pypi builds failed after integrating conan our project. #1555
Closed
gurgenyegoryan
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi everyone,
We have a
C++
project and we are creating a python module. For quick builds, we integratedConan
, and after that the builds do not pass, but old method pass. Can you help me figure out what the problem is.Old method in CMakeLists.txt without conan
target_link_libraries(${wrap_lib} PRIVATE pthread fmt::fmt arrow::dataset arrow_python arrow::flight arrow::bundled arrow::arrow ${client_lib} ${client_dependencies})
New method in CMakeLists.txt with conan (targets are taken from conanbuildinfo.cmake file)
target_link_libraries(${wrap_lib} PRIVATE pthread fmt arrow_dataset arrow_python arrow_flight arrow_bundled arrow ${client_lib} ${client_dependencies})
***Error
ImportError: /project/build/lib.linux-x86_64-cpython-39/package/package.cpython-39-x86_64-linux-gnu.so: undefined symbol: __libc_single_threaded
Beta Was this translation helpful? Give feedback.
All reactions