[Python-Dev] Fixing buildbot/external(-amd64).bat files on Windows

Thomas Heller theller at ctypes.org
Fri Feb 29 15:25:15 CET 2008


Trent Nelson schrieb:
> Christian Heimes:
>> Trent Nelson wrote:
>> > -   vcbuild db-4.4.20\build_win32\Berkeley_DB.sln /build Debug
>> /project db_static
>> > +   devenv /upgrade db-4.4.20\build_win32\Berkeley_DB.sln
>> > +   devenv db-4.4.20\build_win32\Berkeley_DB.sln /build Debug
>> /project db_static
>>
>> The upgrade is requires only once. It probably belongs next to the
>> checkout or svn up and not in the build section.
> 
> Makes sense.  So we're looking at something like:
> 
> @rem Sleepycat db
> if not exist db-4.4.20 (
>     svn export http://svn.python.org/projects/external/db-4.4.20
>     devenv /upgrade db-4.4.20\build_win32\Berkeley_DB.sln
> )
> if not exist db-4.4.20\build_win32\debug\libdb44sd.lib (
>     devenv db-4.4.20\build_win32\Berkeley_DB.sln /build Debug
> )
> 
> I'll test this when I get to work and report back.

Great.

What's the difference between these two?

  vcbuild db-4.4.20\build_win32\Berkeley_DB.sln /build Debug

  devenv db-4.4.20\build_win32\Berkeley_DB.sln /build Debug

Thomas



More information about the Python-Dev mailing list