[LLVMdev] Installing binary gcc-4.0 frontend on x86-linux: where is llvm-gcc?
Bill Wendling
isanbard at gmail.com
Wed Sep 13 02:19:59 PDT 2006
On Sep 12, 2006, at 8:26 PM, Warren Armstrong wrote:
> Running the configure script fails to find llvm-gcc. Inspecting
> the untarred frontend, it doesn't contain any such binary, although
> it does have gcc and g++ (sans llvm- prefix). Is this a problem with
> the configure script, the download, or the procedure I followed?
>
I hypothesize that this is intentional because llvm-gcc3 is still in
use. My suggestion is to do sym-links like so:
$ cd /usr/local/bin/llvm/4.0/bin
$ for i in `ls -1`; do ln -s $i llvm-$i; done
or something similar. Then you'll have your llvm-* things.
Share and enjoy!
-bw
More information about the llvm-dev
mailing list