The llvm tag has no wiki summary.
3
votes
1answer
106 views
Creating full, global clang+llvm environment
What is the easiest way to setup full Clang, libc++ and LLVM as default global toolchain? All of my attempts to build it, in most of the configurations I could think of, resulted in working Clang, but ...
0
votes
1answer
565 views
sh: time command not found
In llvm 3.0 test-suite, the snippet of code bellow gives the following error on bash:
sh: time command not found
if [ "x$RHOST" = x ] ; then
( sh -c "$ULIMITCMD $TIMEIT -p sh -c '$COMMAND ...
2
votes
0answers
431 views
How do I install LLVM 2.9 on Mac OS X Lion?
I need LLVM (2.9 specifically), but I can't figure out how to follow the installation instructions. Could someone kindly provide the step by step console commands for building/installing LLVM in the ...
5
votes
1answer
2k views
Getting clang to work on Fedora 15
I have installed clang via yum:
yum install clang
Unfortunately, even a simple "Hello World!" won't compile because it tries to use the headers of libstdc++4.6 (which I think have c++0x features ...