search for: 131efc

Displaying 2 results from an estimated 2 matches for "131efc".

2007 Jul 18
0
[LLVMdev] memory hog llvm-ld
...... lots of *.o files ... \ -L/usr/share/qt3/lib -L/usr/X11R6/lib \ -lcrypto -lusb -lutil -lqt-mt -lXext -lX11 -lm -lpthread This time LLVM did not eat too much memory. I got a nice executable. $ 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-se...
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/ \