cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
UNIX/Linux Programming
How link LLVM libs?
How link LLVM libs?
Jul 1, 2018 at 10:16am UTC
Borneq
(50)
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.
Jul 2, 2018 at 2:22pm UTC
helios
(17574)
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
Jul 2, 2018 at 2:23pm UTC
Topic archived. No new replies allowed.