[PATCH] D74588: Make TableGenGlobalISel an object library
Aaron Puchert via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu May 20 07:21:06 PDT 2021
aaronpuchert added a comment.
Hmm, this doesn't actually work. The problem is that we're using `target_link_libraries` with `LLVMTableGen`, which we have to, because it's not in the big shared library. But then we also get the dependencies of that (`LLVMSupport` and `LLVMDemangle`), which are part of the shared library. In my experiments there wasn't a problem, but that might just be a coincidence.
So I think we have to go back to the original change.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D74588/new/
https://reviews.llvm.org/D74588
More information about the llvm-commits
mailing list