Hello,
I'm proposing a patch to the Polly/LLVM project that involves linking
libPolly.a or libPolly.so to NVPTX back-end libraries. I'm currently using,
target_link_libraries(Polly
LLVMNVPTXCodeGen
LLVMNVPTXInfo
LLVMNVPTXDesc
LLVMNVPTXAsmPrinter
)
The opt binary links to both Polly and NVPTX back-end libraries, therefore
including the back-end libraries twice which causes problems. Can linking
the libraries as an INTERFACE to Polly solve the problem ?
target_link_libraries(Polly INTERFACE
LLVMNVPTXCodeGen
LLVMNVPTXInfo
LLVMNVPTXDesc
LLVMNVPTXAsmPrinter
)
Thank You,
Sanjay
--
Powered by www.kitware.com
Please keep messages on-topic and check the CMake FAQ at:
http://www.cmake.org/Wiki/CMake_FAQ
Kitware offers various services to support the CMake community. For more
information on each offering, please visit:
CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html
Visit other Kitware open-source projects at
http://www.kitware.com/opensource/opensource.html
Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/cmake