I’m trying to install LLVM-3.6.0-r218288-win32.exe on Windows 7 Ultimate x64. The install doesn’t complain, but the toolset doesn’t show up in either Visual Studio 2013 or Visual Studio 2010. Also I selected the choices to add LLVM to the path for every user and put an LLVM icon on the desktop. Neither of this happened. Can anyone tell me how to get this to work? Regards, Eric Mader
I'm not sure about the Windows installer, but if you build and install LLVM for Windows from the source code, you should be able to go to the installation folder, find a subfolder named "tools/msbuild" and run the "install.bat" script. This should make your LLVM toolset appear in VS. On Mon, Sep 29, 2014 at 2:52 PM, Eric Mader <emader at gmx.us> wrote:> I’m trying to install LLVM-3.6.0-r218288-win32.exe on Windows 7 Ultimate > x64. The install doesn’t complain, but the toolset doesn’t show up in > either Visual Studio 2013 or Visual Studio 2010. Also I selected the > choices to add LLVM to the path for every user and put an LLVM icon on the > desktop. Neither of this happened. Can anyone tell me how to get this to > work? > > Regards, > Eric Mader > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140929/fdb12df1/attachment.html>
I was hoping to not have to build LLVM myself, especially on Windows. Can anybody help me with the Windows installer? Failing that, I find the directions for how to compile on Windows hard to follow? Can I build using Cygwin? Regards, Eric On 9/29/14, 8:11 AM, Rafael Auler wrote:> I'm not sure about the Windows installer, but if you build and install > LLVM for Windows from the source code, you should be able to go to the > installation folder, find a subfolder named "tools/msbuild" and run > the "install.bat" script. This should make your LLVM toolset appear in VS. > > On Mon, Sep 29, 2014 at 2:52 PM, Eric Mader <emader at gmx.us > <mailto:emader at gmx.us>> wrote: > > I’m trying to install LLVM-3.6.0-r218288-win32.exe on Windows 7 > Ultimate x64. The install doesn’t complain, but the toolset > doesn’t show up in either Visual Studio 2013 or Visual Studio > 2010. Also I selected the choices to add LLVM to the path for > every user and put an LLVM icon on the desktop. Neither of this > happened. Can anyone tell me how to get this to work? > > Regards, > Eric Mader > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu <mailto:LLVMdev at cs.uiuc.edu> > http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140929/894c70c3/attachment.html>
On Mon, Sep 29, 2014 at 10:52 AM, Eric Mader <emader at gmx.us> wrote:> I’m trying to install LLVM-3.6.0-r218288-win32.exe on Windows 7 Ultimate > x64. The install doesn’t complain, but the toolset doesn’t show up in either > Visual Studio 2013 or Visual Studio 2010. Also I selected the choices to add > LLVM to the path for every user and put an LLVM icon on the desktop. Neither > of this happened. Can anyone tell me how to get this to work?Hmm, your set-up sounds very similar to mine (Win 7, x64, a couple of visual studios), and I build the installer and it works for me. I wouldn't be too surprised if install.bat fails to find your Visual Studio installation. Can you share the paths where it's installed and where the existing toolsets reside? Not being able to install the desktop icon and set the PATH is more surprising. Did the installer run as administrator? It should, and it should pop up the UAC when it runs. Thanks, Hans
Hi Hans, I think installer.bat found my visual Studio installation because it installed the Win32 toolsets but not the x64 ones. (It took me a while to work this out ;-) I installed the x64 toolsets by hand and they seem to work. I think the installer ran as administrator. I explicitly ran it that way again (asking it to uninstall first) just to be sure. It didn't seem to make any difference. IIRC, it did pop up the UAC when it ran. Regards, Eric On 9/29/14, 3:59 PM, Hans Wennborg wrote:> On Mon, Sep 29, 2014 at 10:52 AM, Eric Mader <emader at gmx.us> wrote: >> I’m trying to install LLVM-3.6.0-r218288-win32.exe on Windows 7 Ultimate >> x64. The install doesn’t complain, but the toolset doesn’t show up in either >> Visual Studio 2013 or Visual Studio 2010. Also I selected the choices to add >> LLVM to the path for every user and put an LLVM icon on the desktop. Neither >> of this happened. Can anyone tell me how to get this to work? > Hmm, your set-up sounds very similar to mine (Win 7, x64, a couple of > visual studios), and I build the installer and it works for me. > > I wouldn't be too surprised if install.bat fails to find your Visual > Studio installation. Can you share the paths where it's installed and > where the existing toolsets reside? > > Not being able to install the desktop icon and set the PATH is more surprising. > > Did the installer run as administrator? It should, and it should pop > up the UAC when it runs. > > Thanks, > Hans >