Displaying 6 results from an estimated 6 matches for "58935".
Did you mean:
58735
2008 Nov 11
3
[LLVMdev] llvm-gcc fails to build libgcc when built with itself
...w)
• build llvm-gcc with llvm-gcc(old)
• deinstall llvm-gcc(old), install llvm-gcc(new)
However, I have the problem that the llvm-gcc(new) does not work: after
it is compiled, it tries to build libgcc2 with itself (llvm-gcc(new)),
which fails on a few files:
/usr/ports/lang/llvm-gcc/w-llvm-gcc4.2-58935-1/llvm-gcc4.2/host-i386-ecce-mirbsd10/gcc/xgcc -B/usr/ports/lang/llvm-gcc/w-llvm-gcc4.2-58935-1/llvm-gcc4.2/host-i386-ecce-mirbsd10/gcc/ -B/usr/mpkg/i386-ecce-mirbsd10/bin/ -B/usr/mpkg/i386-ecce-mirbsd10/lib/ -isystem /usr/mpkg/i386-ecce-mirbsd10/include -isystem /usr/mpkg/i386-ecce-mirbsd10/sys-in...
2008 Nov 12
0
[LLVMdev] llvm-gcc fails to build libgcc when built with itself
Can you bootstrap llvm-gcc (configure with --enable-bootstrap)?
Ciao,
Duncan.
2008 Nov 12
1
[LLVMdev] llvm-gcc fails to build libgcc when built with itself
Duncan Sands dixit:
>Can you bootstrap llvm-gcc (configure with --enable-bootstrap)?
Nope, probably because it uses the host C++ compiler instead of the
one built in stage1 during stage2:
/usr/ports/lang/llvm-gcc/w-llvm-gcc4.2-58935-1/llvm-gcc4.2/host-i386-ecce-mirbsd10/prev-gcc/xgcc -B/usr/ports/lang/llvm-gcc/w-llvm-gcc4.2-58935-1/llvm-gcc4.2/host-i386-ecce-mirbsd10/prev-gcc/ -B/usr/mpkg/i386-ecce-mirbsd10/bin/ -c -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -pedantic -Wno-long-long -W...
2008 Nov 09
0
[LLVMdev] llvm-config
Hello,
llvm-config contains:
| my $LLVM_SRC_ROOT = q{/usr/ports/lang/llvm/w-llvm-58935-0/llvm};
| my $LLVM_OBJ_ROOT = q{/usr/ports/lang/llvm/w-llvm-58935-0/llvm};
However, these paths are temporary and do not exist after compilation.
llvm-gcc is fine to pick up the installed copy of llvm; how do I go if
I want the installed copy to no longer contain build/fake-install paths?...
2005 Oct 11
0
CESA-2005:782 Moderate CentOS 3 x86_64 util-linux and mount - security update
CentOS Errata and Security Advisory CESA-2005:782
util-linux and mount security update for CentOS 3 x86_64:
https://rhn.redhat.com/errata/RHSA-2005-782.html
The following updated file has been uploaded and is currently syncing to
the mirrors:
x86_64:
updates/x86_64/RPMS/losetup-2.11y-31.11.x86_64.rpm
updates/x86_64/RPMS/mount-2.11y-31.11.x86_64.rpm
2005 Oct 18
4
Ways to speed up R code?
Hi R-users:
Yesterday I ran a R code for 9 hours and it did not show any sign to
stop. Then I interrupted it and found it had completed 82.5%.
This morning I decided to wait for another 11 hours to see what will
happen. Wait a minute, I heard that transforming data.frame to matrix
will make R code faster. Then I made the modification in my R code.
Oooh, the new code finished within 30 minutes!!