source: local/greenstone2/windows-64bit/devel64-in32mode.bat@ 31411

Last change on this file since 31411 was 31411, checked in by ak19, 7 years ago

Some explanatory comments.

File size: 2.5 KB
Line 
1:: This script is called devel.bat NOT setup.bat, because firstly, it is for compiling GS2
2:: and secondly, this script wipes out PATH and sets it from scratch. Running the toplevel GS2 setup.bat
3:: will invoke any setup.bat in this local folder, and if this script were called setup.bat it would wipe
4:: out the Greenstone PATH environment as adjusted by GS2 so we'd not be able to run any Greenstone scripts
5:: despite sourcing GS2's toplevel setup.bat. Hence this script is called devel.bat.
6
7
8:: Get the strawberry perl we use for GS from http://trac.greenstone.org/browser/main/trunk/release-kits/shared/windows/perl.zip?rev=head
9:: this is referred to below as strawberry-perl32no64
10
11set JAVA_HOME=C:\Program Files\Java\jdk1.7.0_55
12
13:: NOTE: we are indeed wiping out PATH and setting it from scratch. This follows what the releasekits do each night when generating GS2-caveat
14:: and that always seems to successfully compile apache-httpd in one go. So after setting PATH from scratch here, we only need to worry about
15:: race conditions affecting GS2 compiling (particularly apache-httpd) on recompile of GS2. In that case, just delete gs2-svn\apache-httpd\windows\error
16:: and retry recompilation with makegs2x64.bat, or just plain retry recompilation with that script.
17
18::set PATH=%JAVA_HOME%\bin;C:\strawberry-perl32no64\perl\bin;C:\Program Files\SlikSvn\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\putty;C:\Program Files (x86)\linuxtools
19set PATH=%JAVA_HOME%\bin;C:\strawberry-perl32no64\perl\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;
20:: REMOVING CMake from PATH:
21rem C:\Program Files (x86)\Java\jdk1.8.0_65\bin;C:\ProgramData\Oracle\Java\javapath;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Microsoft Windows Performance Toolkit\;c:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files\nodejs\;C:\Program Files\SlikSvn\bin;C:\Program Files\Git\cmd;C:\Users\Anupama\AppData\Roaming\npm
22rem %PATH%
23
24:: Microsoft SDK is needed only if compiling GS2 with debugging on,
25:: but regular compiling (without debugging on) will also work with MS SDK environment:
26pushd "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin"
27call "SetEnv.Cmd"
28popd
29
30:: MS Visual Studio needed to compile GS2
31pushd "C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\Tools\"
32call vsvars32.bat
33popd
34
Note: See TracBrowser for help on using the repository browser.