Displaying 3 results from an estimated 3 matches for "e5a78139".
2007 Jul 18
2
[LLVMdev] memory hog llvm-ld
...e linker to behave very poorly when linking with debug symbols?
http://lists.cs.uiuc.edu/pipermail/llvmdev/2007-June/009391.html
--
Christopher Lamb
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20070718/e5a78139/attachment.html>
2007 Jul 18
0
[LLVMdev] memory hog llvm-ld
Seems like the memory-hog status is related to debug info, e.g. to -g. Because I later compiled the same program with RELEASE
settings, e.g.
$ /usr/src/llvm/dist/bin/g++ -c -pipe --emit-llvm \
-fvisibility=hidden -fvisibility-inlines-hidden \
-Wall -Wextra -Wno-sign-compare -Os \
... lots of -Dxxxx ... \
-I/usr/share/qt3/mkspecs/default -I. -I.. \
-I../../../include/qt3
2007 Jul 18
5
[LLVMdev] memory hog llvm-ld
I want to share a little LLVM experiment.
I tried LLVM on one of my bigger Qt 3.x based projects. I used
llvm from SVN trunk (r39999) and SVN llvm-gcc-4.01 (r370) and
did compile every file with
/usr/src/llvm/dist/bin/g++ -c -pipe -g \
-Wall -Wextra -Wno-sign-compare \
... lots of -Dxxxx ... \
--emit-llvm -I/usr/share/qt3/mkspecs/default \
-I. -I.. -I../../../include/qt3 -I.obj/ \