search for: 4582dd34

Displaying 3 results from an estimated 3 matches for "4582dd34".

2012 Nov 02
0
[LLVMdev] How can I build Mysql and Apache using LLVM
Hi, I am interested in building some large projects to get single .bc files. Is there an easy way to do this? Or do I have to go through and understand the whole makefile script? Thank you very much. Andy -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20121102/109cb363/attachment.html>
2012 Nov 02
3
[LLVMdev] How can I build Mysql and Apache using LLVM
...realize this is a bit vague (as I'm by no means an expert on the matter) but thought it might be at least a pointer to some ideas/approach. - David -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20121101/4582dd34/attachment.html>
2012 Sep 25
5
[LLVMdev] Can clang generate the same bitcode with the toolchains that have same version of libraries but different targets
Hi, I'm using clang to build my project as follows: $ clang++ -ccc-host-triple arm-none-linux-gnueabi --sysroot=/usr/local/arm-none-linux-gnueabi/arm-none-linux-gnueabi/libc/ -o foo.o -emit-llvm -c foo.cpp $ clang++ -ccc-host-triple arm-none-linux-gnueabi --sysroot=/usr/local/arm-none-linux-gnueabi/arm-none-linux-gnueabi/libc/ -o main.o -emit-llvm -c main.cpp $ llvm-link foo.o main.o -o