mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 12:36:07 +00:00

This adds basic support for calling the verifier on global declarations that are expected to represent symbol exports. The driver now exclusively uses this for knowing what symbols make up a TBD file. Future patches will check against the dylib's symbol table.
20 lines
235 B
CMake
20 lines
235 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Support
|
|
TextAPI
|
|
Demangle
|
|
Core
|
|
)
|
|
|
|
add_clang_library(clangInstallAPI
|
|
DylibVerifier.cpp
|
|
FileList.cpp
|
|
Frontend.cpp
|
|
HeaderFile.cpp
|
|
Visitor.cpp
|
|
|
|
LINK_LIBS
|
|
clangAST
|
|
clangBasic
|
|
clangLex
|
|
)
|