mirror of
https://github.com/python/cpython.git
synced 2025-07-23 19:25:40 +00:00
Bump Windows build to 3.5
This commit is contained in:
parent
42867c73c9
commit
6373ba5199
12 changed files with 734 additions and 734 deletions
|
@ -106,7 +106,7 @@ main(int argc, char **argv)
|
|||
/*
|
||||
* XXX TODO: if we really wanted to be fancy, we could check the
|
||||
* modules for all processes (not just the python[_d].exe ones)
|
||||
* and see if any of our DLLs are loaded (i.e. python34[_d].dll),
|
||||
* and see if any of our DLLs are loaded (i.e. python35[_d].dll),
|
||||
* as that would also inhibit our ability to rebuild the solution.
|
||||
* Not worth loosing sleep over though; for now, a simple check
|
||||
* for just the python executable should be sufficient.
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
/>
|
||||
<UserMacro
|
||||
Name="PyDllName"
|
||||
Value="python34"
|
||||
Value="python35"
|
||||
/>
|
||||
<UserMacro
|
||||
Name="PythonExe"
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalOptions="/export:initexample"
|
||||
AdditionalDependencies="odbc32.lib odbccp32.lib python34.lib"
|
||||
AdditionalDependencies="odbc32.lib odbccp32.lib python35.lib"
|
||||
OutputFile=".\Release/example.pyd"
|
||||
LinkIncremental="1"
|
||||
SuppressStartupBanner="TRUE"
|
||||
|
@ -105,7 +105,7 @@
|
|||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalOptions="/export:initexample"
|
||||
AdditionalDependencies="odbc32.lib odbccp32.lib python34_d.lib"
|
||||
AdditionalDependencies="odbc32.lib odbccp32.lib python35_d.lib"
|
||||
OutputFile=".\Debug/example_d.pyd"
|
||||
LinkIncremental="1"
|
||||
SuppressStartupBanner="TRUE"
|
||||
|
|
|
@ -322,11 +322,11 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */
|
|||
their Makefile (other compilers are generally
|
||||
taken care of by distutils.) */
|
||||
# if defined(_DEBUG)
|
||||
# pragma comment(lib,"python34_d.lib")
|
||||
# pragma comment(lib,"python35_d.lib")
|
||||
# elif defined(Py_LIMITED_API)
|
||||
# pragma comment(lib,"python3.lib")
|
||||
# else
|
||||
# pragma comment(lib,"python34.lib")
|
||||
# pragma comment(lib,"python35.lib")
|
||||
# endif /* _DEBUG */
|
||||
# endif /* _MSC_VER */
|
||||
# endif /* Py_BUILD_CORE */
|
||||
|
|
1398
PC/python3.def
1398
PC/python3.def
File diff suppressed because it is too large
Load diff
|
@ -1,14 +1,14 @@
|
|||
$(OutDir)python3.dll: python3.def $(OutDir)python34stub.lib
|
||||
cl /LD /Fe$(OutDir)python3.dll python3dll.c python3.def $(OutDir)python34stub.lib
|
||||
$(OutDir)python3.dll: python3.def $(OutDir)python35stub.lib
|
||||
cl /LD /Fe$(OutDir)python3.dll python3dll.c python3.def $(OutDir)python35stub.lib
|
||||
|
||||
$(OutDir)python34stub.lib: python34stub.def
|
||||
lib /def:python34stub.def /out:$(OutDir)python34stub.lib /MACHINE:$(MACHINE)
|
||||
$(OutDir)python35stub.lib: python35stub.def
|
||||
lib /def:python35stub.def /out:$(OutDir)python35stub.lib /MACHINE:$(MACHINE)
|
||||
|
||||
clean:
|
||||
IF EXIST $(OutDir)python3.dll del $(OutDir)python3.dll
|
||||
IF EXIST $(OutDir)python3.lib del $(OutDir)python3.lib
|
||||
IF EXIST $(OutDir)python34stub.lib del $(OutDir)python34stub.lib
|
||||
IF EXIST $(OutDir)python35stub.lib del $(OutDir)python35stub.lib
|
||||
IF EXIST $(OutDir)python3.exp del $(OutDir)python3.exp
|
||||
IF EXIST $(OutDir)python34stub.exp del $(OutDir)python34stub.exp
|
||||
IF EXIST $(OutDir)python35stub.exp del $(OutDir)python35stub.exp
|
||||
|
||||
rebuild: clean $(OutDir)python3.dll
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
# Generate python34stub.def out of python3.def
|
||||
# Generate python35stub.def out of python3.def
|
||||
# The regular import library cannot be used,
|
||||
# since it doesn't provide the right symbols for
|
||||
# data forwarding
|
||||
out = open("python34stub.def", "w")
|
||||
out.write('LIBRARY "python34"\n')
|
||||
out = open("python35stub.def", "w")
|
||||
out.write('LIBRARY "python35"\n')
|
||||
out.write('EXPORTS\n')
|
||||
|
||||
inp = open("python3.def")
|
||||
|
@ -14,7 +14,7 @@ line = inp.readline() # LIBRARY
|
|||
assert line.strip()=='EXPORTS'
|
||||
|
||||
for line in inp:
|
||||
# SYM1=python34.SYM2[ DATA]
|
||||
# SYM1=python35.SYM2[ DATA]
|
||||
head, tail = line.split('.')
|
||||
if 'DATA' in tail:
|
||||
symbol, tail = tail.split(' ')
|
|
@ -1,4 +1,4 @@
|
|||
LIBRARY "python34"
|
||||
LIBRARY "python35"
|
||||
EXPORTS
|
||||
PyArg_Parse
|
||||
PyArg_ParseTuple
|
|
@ -2,10 +2,10 @@
|
|||
if not defined HOST_PYTHON (
|
||||
if %1 EQU Debug (
|
||||
set HOST_PYTHON=python_d.exe
|
||||
if not exist python34_d.dll exit 1
|
||||
if not exist python35_d.dll exit 1
|
||||
) ELSE (
|
||||
set HOST_PYTHON=python.exe
|
||||
if not exist python34.dll exit 1
|
||||
if not exist python35.dll exit 1
|
||||
)
|
||||
)
|
||||
%HOST_PYTHON% build_ssl.py %1 %2 %3
|
||||
|
|
|
@ -106,7 +106,7 @@ main(int argc, char **argv)
|
|||
/*
|
||||
* XXX TODO: if we really wanted to be fancy, we could check the
|
||||
* modules for all processes (not just the python[_d].exe ones)
|
||||
* and see if any of our DLLs are loaded (i.e. python34[_d].dll),
|
||||
* and see if any of our DLLs are loaded (i.e. python35[_d].dll),
|
||||
* as that would also inhibit our ability to rebuild the solution.
|
||||
* Not worth loosing sleep over though; for now, a simple check
|
||||
* for just the python executable should be sufficient.
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<IntDir>$(SolutionDir)$(PlatformName)-temp-$(Configuration)\$(ProjectName)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="UserMacros">
|
||||
<PyDllName>python34$(PyDebugExt)</PyDllName>
|
||||
<PyDllName>python35$(PyDebugExt)</PyDllName>
|
||||
<PythonExe>$(OutDir)python$(PyDebugExt).exe</PythonExe>
|
||||
<KillPythonExe>$(OutDir)kill_python$(PyDebugExt).exe</KillPythonExe>
|
||||
<externalsDir>..\..</externalsDir>
|
||||
|
|
|
@ -37,7 +37,7 @@ Debug
|
|||
Used to build Python with extra debugging capabilities, equivalent
|
||||
to using ./configure --with-pydebug on UNIX. All binaries built
|
||||
using this configuration have "_d" added to their name:
|
||||
python34_d.dll, python_d.exe, parser_d.pyd, and so on. Both the
|
||||
python35_d.dll, python_d.exe, parser_d.pyd, and so on. Both the
|
||||
build and rt (run test) batch files in this directory accept a -d
|
||||
option for debug builds. If you are building Python to help with
|
||||
development of CPython, you will most likely use this configuration.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue