Displaying 1 result from an estimated 1 matches for "polly_build_shared_lib".
2013 Oct 31
2
[LLVMdev] Why does cmake use LLVMBuild.txt to specify the LLVM-libs link order?
...rize LLVMipa)
The dependences set by the LLVMBuild.txt infrastructure are redundant with the
dependences specified in the CMakeLists.txt using add_dependencies as in:
add_dependencies(LLVMipo intrinsics_gen)
That also means that a conditional cmake dependence of the form:
if (WITH_POLLY AND NOT POLLY_BUILD_SHARED_LIB)
add_dependencies(LLVMipo LLVMPolly)
endif (WITH_POLLY AND NOT POLLY_BUILD_SHARED_LIB)
is not satisfied on the link command (the only place the add_dependencies is
currently used is to establish a build order of the components.)
It seems to me that the LLVMBuild.txt machinery is pretty rigid in...