Problems linking against LLVM 3.8.0

I downloaded the precompiled llvm+clang 3.8.0 and tried to link my project against the new llvm libs.
The problem is that the linker says some symbols are not found.
I took a look at the llvm-config output and the lib directory and libLLVMipa.a is missing in both
I don't know if that's a bug or it has been removed with the new version. I'll try to compile it myself and see if it works

Lorenzo Laneve via llvm-dev <llvm-dev@lists.llvm.org> writes:

I downloaded the precompiled llvm+clang 3.8.0 and tried to link my
project against the new llvm libs.
The problem is that the linker says some symbols are not found.
I took a look at the llvm-config output and the lib directory and
libLLVMipa.a is missing in both
I don't know if that's a bug or it has been removed with the new
version. I'll try to compile it myself and see if it works

The IPA stuff was folded into the main Analysis library in r245318.
Presumably the symbols you're looking for are in libLLVMAnalysis.a now.