From llvm.org I downloaded llvm-2.6-x86-mingw32.tar.bz2 into c:\llvmand llvm-gcc-4.2-2.6-x86-mingw32-tar.bz2 into c:\llvm-gcc, and also set the desktop shortcut to the next batch file in c:\llvm-gcc, which is trying configure the environment for compilation using the command line llvm-gcc:
@echo off
color 0E
echo Configuring LLVM environment...
set LLVM_LIB_SEARCH_PATH=%~dp0lib
set PATH=c:\llvm;%~dp0bin;%PATH%
Unfortunately, this setting gives the following error when trying to compile a simple global hello program:
C:\CDev\sandbox>llvm-gcc -o hello.exe hello.c
llvm-gcc: CreateProcess: No such file or directory
I briefly looked at the LLVM binaries, and it looks like the Win32 API and MinGW-based runtime files are already included. I also tried adding DLG MinGW to c:\llvm-gcc\binno avail.
What did I miss when setting up the LLVM binary and GCC on Vista?
Thanks Jon