Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 27423b8bff31763486e1e4830a20302c362d4cf7 authored by Guido van Rossum on 06 December 2007, 19:19:54 UTC
Tagging 3.0a2 for release. Fingers crossed.
Tip revision: 27423b8
env.bat
@echo off
rem Set these values according to where you installed the software
rem You need to install the necessary bits mentioned in:
rem http://wiki.python.org/moin/Building_Python_with_the_free_MS_C_Toolkit

set TOOLKIT=%ProgramFiles%\Microsoft Visual C++ Toolkit 2003
set SDK=%ProgramFiles%\Microsoft Platform SDK for Windows Server 2003 R2
set NET=%ProgramFiles%\Microsoft Visual Studio .NET 2003
set NANT=%ProgramFiles%\Nant

set PATH=%TOOLKIT%\bin;%PATH%;%SDK%\Bin\Win64;%NANT%\bin;%SDK%\bin
set INCLUDE=%TOOLKIT%\include;%SDK%\Include;%INCLUDE%
set LIB=%TOOLKIT%\lib;%NET%\VC7\lib;%SDK%\lib;%LIB%

echo Build environment for Python
echo TOOLKIT=%TOOLKIT%
echo SDK=%SDK%
echo NET=%NET%
echo NANT=%NANT%
echo Commands:
echo * build 
echo * rt
back to top