Develop and Download Open Source Software

Browse Subversion Repository

Contents of /trunk/external/windows/setup/clang/vcbuild2008.bat

Parent Directory Parent Directory | Revision Log Revision Log


Revision 280 - (show annotations) (download) (as text)
Tue Jul 10 09:41:50 2012 UTC (11 years, 10 months ago) by shirayanagi
File MIME type: application/x-msdos-program
File size: 592 byte(s)
バグ修正
1 @echo off
2 call _setenv.bat
3 SET VSVERSION=2008
4 SET PATH=%WINDIR%\Microsoft.NET\Framework\v3.5;%PATH%
5
6 cd %TEMPDIR%
7 if not exist build mkdir build
8 cd build
9 if not exist clang mkdir clang
10 cd clang
11 if exist vs%VSVERSION% rmdir /S /Q vs%VSVERSION%
12 if not exist vs%VSVERSION% mkdir vs%VSVERSION%
13 cd vs%VSVERSION%
14
15 cmake -G "Visual Studio 9 2008" ../../../llvm
16 if errorlevel 1 goto error
17
18 msbuild /p:Configuration=Release /p:Platform=Win32 /t:Clean;Build %TEMPDIR%\build\clang\vs%VSVERSION%\LLVM.sln
19 if errorlevel 1 goto error
20
21 filesync.bat
22
23 goto end
24
25 :error
26 pause
27
28 :end

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26