Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a041ba5

Browse files
author
Thomas Heller
committed
On Win64, linking the python dll currently fails with 'unresolved
external symbol PyObject_Unicode'. Building _ssl than hangs the build server because starting python.exe displayes a message box that 'Python30.dll' cannot be found. Temporary (?) solution: Look for existance of python30.dll and fail the _ssl build when it is missing.
1 parent 2be0373 commit a041ba5

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

PCbuild/build_ssl.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ if "%1" == "ReleaseAMD64" call "%MSSdk%\SetEnv" /XP64 /RETAIL
44
if not defined HOST_PYTHON (
55
if %1 EQU Debug (
66
set HOST_PYTHON=python_d.exe
7+
if not exist python30_d.dll exit 1
78
) ELSE (
89
set HOST_PYTHON=python.exe
10+
if not exist python30.dll exit 1
911
)
1012
)
1113
%HOST_PYTHON% build_ssl.py %1 %2

0 commit comments

Comments
 (0)