Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
c7990b5b
Commit
c7990b5b
authored
Jul 14, 2006
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Debug build of _ssl.
parent
1def4faf
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
10 deletions
+15
-10
PCbuild/_ssl.vcproj
PCbuild/_ssl.vcproj
+4
-4
PCbuild/build_ssl.bat
PCbuild/build_ssl.bat
+7
-2
PCbuild/build_ssl.py
PCbuild/build_ssl.py
+4
-4
No files found.
PCbuild/_ssl.vcproj
View file @
c7990b5b
...
...
@@ -22,7 +22,7 @@
<Tool
Name=
"VCNMakeTool"
BuildCommandLine=
"build_ssl.bat $(ConfigurationName)"
ReBuildCommandLine=
"build_ssl.bat
-a $(ConfigurationName)
"
ReBuildCommandLine=
"build_ssl.bat
$(ConfigurationName) -a
"
CleanCommandLine=
"echo Nothing to do"
Output=
"_ssl.pyd"
/>
</Configuration>
...
...
@@ -36,7 +36,7 @@
<Tool
Name=
"VCNMakeTool"
BuildCommandLine=
"build_ssl.bat $(ConfigurationName)"
ReBuildCommandLine=
"build_ssl.bat
-a $(ConfigurationName)
"
ReBuildCommandLine=
"build_ssl.bat
$(ConfigurationName) -a
"
CleanCommandLine=
"echo Nothing to do"
Output=
"_ssl_d.pyd"
/>
</Configuration>
...
...
@@ -50,7 +50,7 @@
<Tool
Name=
"VCNMakeTool"
BuildCommandLine=
"build_ssl.bat $(ConfigurationName)"
ReBuildCommandLine=
"build_ssl.bat
-a $(ConfigurationName)
"
ReBuildCommandLine=
"build_ssl.bat
$(ConfigurationName) -a
"
CleanCommandLine=
"echo Nothing to do"
Output=
"_ssl.pyd"
/>
</Configuration>
...
...
@@ -64,7 +64,7 @@
<Tool
Name=
"VCNMakeTool"
BuildCommandLine=
"build_ssl.bat $(ConfigurationName)"
ReBuildCommandLine=
"build_ssl.bat
-a $(ConfigurationName)
"
ReBuildCommandLine=
"build_ssl.bat
$(ConfigurationName) -a
"
CleanCommandLine=
"echo Nothing to do"
Output=
"_ssl.pyd"
/>
</Configuration>
...
...
PCbuild/build_ssl.bat
View file @
c7990b5b
@echo
off
cd
if
not
defined
HOST_PYTHON
set
HOST_PYTHON
=
python
if
not
defined
HOST_PYTHON
(
if
%
1
EQU
Debug
(
set
HOST_PYTHON
=
python_d
.exe
)
ELSE
(
set
HOST_PYTHON
=
python
.exe
)
)
%HOST_PYTHON%
build_ssl
.py
%
1
%
2
PCbuild/build_ssl.py
View file @
c7990b5b
...
...
@@ -113,24 +113,24 @@ def run_configure(configure, do_script):
def
main
():
build_all
=
"-a"
in
sys
.
argv
if
sys
.
argv
[
-
1
]
==
"Release"
:
if
sys
.
argv
[
1
]
==
"Release"
:
arch
=
"x86"
debug
=
False
configure
=
"VC-WIN32"
makefile
=
"32.mak"
elif
sys
.
argv
[
-
1
]
==
"Debug"
:
elif
sys
.
argv
[
1
]
==
"Debug"
:
arch
=
"x86"
debug
=
True
configure
=
"VC-WIN32"
makefile
=
"d32.mak"
elif
sys
.
argv
[
-
1
]
==
"ReleaseItanium"
:
elif
sys
.
argv
[
1
]
==
"ReleaseItanium"
:
arch
=
"ia64"
debug
=
False
configure
=
"VC-WIN64I"
do_script
=
"ms
\
\
do_win64i"
makefile
=
"ms
\
\
nt.mak"
os
.
environ
[
"VSEXTCOMP_USECL"
]
=
"MS_ITANIUM"
elif
sys
.
argv
[
-
1
]
==
"ReleaseAMD64"
:
elif
sys
.
argv
[
1
]
==
"ReleaseAMD64"
:
arch
=
"amd64"
debug
=
False
configure
=
"VC-WIN64A"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment