From 75f18c7c6653a7cec50243dc7f089418d16b6392 Mon Sep 17 00:00:00 2001 From: Matt Pharr Date: Wed, 4 Jan 2012 11:44:19 -0800 Subject: [PATCH] Add buildispc.bat script for just building the compiler on windows. --- buildispc.bat | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 buildispc.bat diff --git a/buildispc.bat b/buildispc.bat new file mode 100644 index 00000000..99a8b097 --- /dev/null +++ b/buildispc.bat @@ -0,0 +1,11 @@ +@echo off + +REM If LLVM_INSTALL_DIR isn't set globally in your environment, +REM it can be set here_ +set LLVM_INSTALL_DIR=c:\users\mmp\llvm-dev +set LLVM_VERSION=3.1svn + +REM Both the LLVM binaries and python need to be in the path +set path=%LLVM_INSTALL_DIR%\bin;%PATH%;c:\cygwin\bin + +msbuild ispc.vcxproj /V:m /p:Platform=Win32 /p:Configuration=Release