This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Building SSL fails under 64-bit Windows
Type: Stage:
Components: Build, Extension Modules, Windows Versions: Python 3.2
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: loewis, pitrou
Priority: normal Keywords:

Created on 2010-08-15 19:11 by pitrou, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg113998 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2010-08-15 19:11
This is what I get when MSVC 2008 tries to build the _ssl module:

8>------ Build started: Project: _ssl, Configuration: Debug x64 ------
8>Performing Pre-Build Event...
8>'""' is not recognized as an internal or external command,
8>operable program or batch file.
8>Project : error PRJ0019: A tool returned an error code from "Performing Pre-Build Event..."
8>Build log was saved at "file://Z:\py3k\__svn__\PCbuild\x64-temp-Debug\_ssl\BuildLog.htm"
8>_ssl - 1 error(s), 0 warning(s)

The build log has the following contents:

Creating temporary file "C:\Users\Antoine\AppData\Local\Temp\BAT00012021242476.bat" with contents
[
@echo off

cd "Z:\py3k\__svn__\PCbuild\"

"" build_ssl.py Release x64 -a



if errorlevel 1 goto VCReportError

goto VCEnd

:VCReportError

echo Project : error PRJ0019: A tool returned an error code from "Performing Pre-Build Event..."

exit 1

:VCEnd
]
Creating command line "C:\Users\Antoine\AppData\Local\Temp\BAT00012021242476.bat"


I have installed Perl and Python 2.7.
msg113999 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2010-08-15 19:13
Try setting HOST_PYTHON.
msg114004 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2010-08-15 19:47
> Try setting HOST_PYTHON.

It worked, thank you.
History
Date User Action Args
2022-04-11 14:57:05adminsetgithub: 53824
2010-08-15 19:47:13pitrousetstatus: open -> closed
resolution: fixed
messages: + msg114004
2010-08-15 19:13:46loewissetmessages: + msg113999
2010-08-15 19:11:21pitroucreate