How link LLVM libs?

I try compile LLVM example. Problem is linking 134 big files , all have 5 GB.
If I add lib by lib to CodeBlock , still errors.
If I add all to CodeBlocks, it can't start.
First, you're trying to link a debug build. You need a release build. The complete release build is roughly 450 MiB.

Second, you don't need to link to all libs. Only to those that implement functions your program uses.

Third, there's no way just adding libraries for linking hangs Code::Blocks. Check what you're actually doing.
Last edited on
Topic archived. No new replies allowed.