aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Extensions
AgeCommit message (Collapse)AuthorFilesLines
2020-11-13llvmbuildectomy - replace llvm-build by plain cmakeserge-sans-paille2-22/+4
No longer rely on an external tool to build the llvm component layout. Instead, leverage the existing `add_llvm_componentlibrary` cmake function and introduce `add_llvm_component_group` to accurately describe component behavior. These function store extra properties in the created targets. These properties are processed once all components are defined to resolve library dependencies and produce the header expected by llvm-config. Differential Revision: https://reviews.llvm.org/D90848
2020-09-08Remove unused variable(s)David Blaikie1-1/+1
2020-09-08Provide anchor for compiler extensionsSerge Guelton2-1/+16
This patch is cherry-picked from 04b0a4e22e3b4549f9d241f8a9f37eebecb62a31, and amended to prevent an undefined reference to `llvm::EnableABIBreakingChecks'
2020-04-24Update compiler extension integration into the build systemserge-sans-paille3-0/+24
The approach here is to create a new (empty) component, `Extensions', where all statically compiled extensions dynamically register their dependencies. That way we're more natively compatible with LLVMBuild and llvm-config. Fixes: https://bugs.llvm.org/show_bug.cgi?id=44870 Differential Revision: https://reviews.llvm.org/D78192