Displaying 3 results from an estimated 3 matches for "eadabd72".
2013 Dec 03
0
[LLVMdev] Unable to perform LLVM LTO using clang
> Could anyone tell me where my mistake is?
Try running
clang -flto a.o b.o -o main -v
it should print how clang is running the linker. See if it is running
the linker you expect and if it is passing -plugin to it.
Cheers,
Rafael
2013 Dec 05
2
[LLVMdev] Unable to perform LLVM LTO using clang
...t how clang is running the linker. See if it is running
> the linker you expect and if it is passing -plugin to it.
>
> Cheers,
> Rafael
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131205/eadabd72/attachment.html>
2013 Dec 02
2
[LLVMdev] Unable to perform LLVM LTO using clang
Hi everyone,
I want to perform whole-program analysis for apache httpd using httpd's
original autoconf system so that I need to generate a single bitcode file.
So I follow the instructions in LLVM document on gold plugin
http://llvm.org/docs/GoldPlugin.html#lto-how-to-build. However, when
running a simple program using LTO, clang fails to link the object file
with the LLVM bitcode.