Displaying 3 results from an estimated 3 matches for "965174".
2007 Jul 18
0
[LLVMdev] memory hog llvm-ld
...$ size main
text data bss dec hex filename
1170074 74586 8456 1253116 131efc main
The same compiled with "g++ (GCC) 4.1.2 20061115 (prerelease)
(Debian 4.1.1-21)" and "GNU ld version 2.17 Debian GNU/Linux"
gave me:
$ size main
952074 8572 4528 965174 eba36 main
In the gcc case, I link with "g++", with link options "-Wl,--gc-sections -Wl,-O2 -Wl,--as-needed
-Wl,--enable-new-dtags -Wl,-s"
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/...
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/ \
2017 Jul 01
0
[RFC] Placing profile name data, and coverage data, outside of object files
On Fri, Jun 30, 2017 at 10:25 PM, Sean Silva <chisophugis at gmail.com> wrote:
>
>
> On Fri, Jun 30, 2017 at 10:04 PM, Sean Silva <chisophugis at gmail.com>
> wrote:
>
>>
>>
>> On Fri, Jun 30, 2017 at 5:54 PM, via llvm-dev <llvm-dev at lists.llvm.org>
>> wrote:
>>
>>> Problem
>>> -------
>>>
>>>