File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -54,13 +54,13 @@ class WinPythonBuilder : PythonBuilder {
54
54
#>
55
55
56
56
$ArchitectureExtension = " "
57
- if ($this.Architecture -eq " x64" ) {
57
+ if ($this.GetHardwareArchitecture () -eq " x64" ) {
58
58
if ($this.Version -ge " 3.5" ) {
59
59
$ArchitectureExtension = " -amd64"
60
60
} else {
61
61
$ArchitectureExtension = " .amd64"
62
62
}
63
- }elseif ($this.Architecture -eq " arm64" ) {
63
+ }elseif ($this.GetHardwareArchitecture () -eq " arm64" ) {
64
64
$ArchitectureExtension = " -arm64"
65
65
}
66
66
@@ -113,6 +113,7 @@ class WinPythonBuilder : PythonBuilder {
113
113
114
114
$variablesToReplace = @ {
115
115
" {{__ARCHITECTURE__}}" = $this.Architecture ;
116
+ " {{__HARDWARE_ARCHITECTURE__}}" = $this.GetHardwareArchitecture ();
116
117
" {{__VERSION__}}" = $this.Version ;
117
118
" {{__PYTHON_EXEC_NAME__}}" = $pythonExecName
118
119
}
You can’t perform that action at this time.
0 commit comments