Displaying 2 results from an estimated 2 matches for "fa14b241".
2013 Dec 05
2
[LLVMdev] Unable to perform LLVM LTO using clang
Dear Rafael,
Thank you for your answer. The verbose mode -v shows that clang uses the
old ld in /usr/bin while I install the gold in /usr/local/bin.
Regards,
Chunbai
On Tue, Dec 3, 2013 at 9:23 PM, Rafael EspĂndola <rafael.espindola at gmail.com
> wrote:
> > Could anyone tell me where my mistake is?
>
> Try running
>
> clang -flto a.o b.o -o main -v
>
> it should
2013 Dec 05
0
[LLVMdev] Unable to perform LLVM LTO using clang
On 5 December 2013 07:46, Chunbai YANG <chunbyang2 at gapps.cityu.edu.hk> wrote:
> Dear Rafael,
>
> Thank you for your answer. The verbose mode -v shows that clang uses the old
> ld in /usr/bin while I install the gold in /usr/local/bin.
Clang should be searching the path. What does
$ which ld
print? Maybe all that you have to do is
$ export PATH=/usr/local/bin:$PATH
Cheers,