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: AMD64 Windows7 SP1 3.x buildbot: compilation of _ssl module fails, the build fails
Type: compile error Stage:
Components: Tests, Windows Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: jkloth, loewis, pitrou, vstinner
Priority: normal Keywords:

Created on 2013-05-17 20:55 by vstinner, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg189485 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2013-05-17 20:55
Example of failure:
http://buildbot.python.org/all/builders/AMD64%20Windows7%20SP1%203.x/builds/1956/


--

Compilation log:

Project "C:\buildbot.python.org\3.x.kloth-win64\build\PCbuild\pcbuild.sln" (1) is building "C:\buildbot.python.org\3.x.kloth-win64\build\PCbuild\_ssl.vcxproj" (17) on node 1 (default targets).
Project "C:\buildbot.python.org\3.x.kloth-win64\build\PCbuild\_ssl.vcxproj" (17) is building "C:\buildbot.python.org\3.x.kloth-win64\build\PCbuild\ssl.vcxproj" (18) on node 1 (default targets).
Build:
  cd "C:\buildbot.python.org\3.x.kloth-win64\build\PCbuild\"
  "C:\buildbot.python.org\3.x.kloth-win64\build\PCbuild\amd64\python_d.exe" build_ssl.py Release x64 -a
  
  Can not find a suitable PERL:
   NO perl interpreters were found on this machine at all!
   Please install ActivePerl and ensure it appears on your path
  No Perl installation was found. Existing Makefiles are used.
  Perl is required to build the makefiles!
C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.MakeFile.Targets(38,5): error MSB3073: The command "cd "C:\buildbot.python.org\3.x.kloth-win64\build\PCbuild\" [C:\buildbot.python.org\3.x.kloth-win64\build\PCbuild\ssl.vcxproj]
C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.MakeFile.Targets(38,5): error MSB3073: "C:\buildbot.python.org\3.x.kloth-win64\build\PCbuild\amd64\python_d.exe" build_ssl.py Release x64 -a [C:\buildbot.python.org\3.x.kloth-win64\build\PCbuild\ssl.vcxproj]
C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.MakeFile.Targets(38,5): error MSB3073: " exited with code 1. [C:\buildbot.python.org\3.x.kloth-win64\build\PCbuild\ssl.vcxproj]
Done Building Project "C:\buildbot.python.org\3.x.kloth-win64\build\PCbuild\ssl.vcxproj" (default targets) -- FAILED.
Done Building Project "C:\buildbot.python.org\3.x.kloth-win64\build\PCbuild\_ssl.vcxproj" (default targets) -- FAILED.
msg189519 - (view) Author: Jeremy Kloth (jkloth) * Date: 2013-05-18 14:49
The build of OpenSSL was failing due to an incomplete external check-in of OpenSSL (missing the cached assembler files).

Martin has since updated the external and I have refreshed the OpenSSL exports on the buildbot.  It is no longer failing to compile, but other errors still remain.

This issue can be closed.
msg189528 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2013-05-18 16:03
Thanks for the heads-up. Closing.
History
Date User Action Args
2022-04-11 14:57:45adminsetgithub: 62202
2013-05-18 16:03:23pitrousetstatus: open -> closed
resolution: fixed
messages: + msg189528
2013-05-18 14:49:11jklothsettype: compile error

messages: + msg189519
nosy: + jkloth
2013-05-17 20:55:55vstinnercreate