Initial problems having installed LLVM

Hello!

I have compiled LLVM without errors and try to do a simple hello world test using the llvmgcc frontend,

llvmgcc -o hello hello.c

and I get this error message:

gcc: installation problem, cannot exec `gccas': No such file or directory

What have I one wrong/what needs to be done?

Regards
Anders

Make sure that the 'gccas' tool is in your path. If you built the default
LLVM tree, it should be located in llvm/lib/Debug/gccas. If you built an
optimized build it will be in lib/Release/gccas.

-Chris