File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -30,9 +30,11 @@ New-Item -ItemType Directory -Path "./python-build" -Force
30
30
31
31
Write-Host " Generating delay libraries for Python 3.11.8..."
32
32
33
- cmd / c " ..\scripts\dlltool.exe --version"
34
- cmd / c " ..\scripts\dlltool.exe --input-def ..\exports.def --output-delaylib ./python-build/python311.lib --dllname ./PCbuild/win32/python311.dll"
35
- cmd / c " ..\scripts\dlltool.exe --input-def ..\exports.def --output-delaylib ./python-build/python311_d.lib --dllname ./PCbuild/win32/python311_d.dll"
33
+ Get-Command dlltool
34
+
35
+ dlltool -- version
36
+ dlltool -- input- def ../ exports.def -- output- delaylib " ./python-build/python311.lib" -- dllname " ./PCbuild/win32/python311.dll"
37
+ dlltool -- input- def ../ exports.def -- output- delaylib " ./python-build/python311_d.lib" -- dllname " ./PCbuild/win32/python311_d.dll"
36
38
37
39
Write-Host " Done!"
38
40
You can’t perform that action at this time.
0 commit comments