[libclang] Add dependency on clangSerialization to unbreak -DBUILD_SHARED_LIBS=1 build after rC349237

Frontend headers have undefined reference on the symbol `clang::PCHContainerOperations::PCHContainerOperations()` through some shared_ptr usage. Any dependents will get the undefined reference which can only be resolved by explicit dependency on clangSerialization (due to -z defs).

llvm-svn: 349259
This commit is contained in:
Fangrui Song 2018-12-15 08:54:06 +00:00
parent da53d8739a
commit 7643f42bdd
1 changed files with 1 additions and 0 deletions

View File

@ -40,6 +40,7 @@ set(LIBS
clangIndex
clangLex
clangSema
clangSerialization
clangTooling
)