Skip to content

Commit f59f602

Browse files
Revert "[windows] fix psutil installation on arm64"
This reverts commit 345452c.
1 parent 211eaa9 commit f59f602

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

utils/build.ps1

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1025,12 +1025,7 @@ function Get-Dependencies {
10251025
Install-PythonWheel "packaging" # For building LLVM 18+
10261026
Install-PythonWheel "distutils" # Required for SWIG support
10271027
if ($Test -contains "lldb") {
1028-
if ($env:PROCESSOR_ARCHITECTURE -eq "ARM64") {
1029-
Write-Output "Installing 'psutil' ..."
1030-
Invoke-Program -OutNull "$(Get-PythonExecutable)" '-I' -m pip install "psutil==6.1.0" --disable-pip-version-check
1031-
} else {
1032-
Install-PythonWheel "psutil" # Required for testing LLDB
1033-
}
1028+
Install-PythonWheel "psutil" # Required for testing LLDB
10341029
$env:Path = "$(Get-PythonScriptsPath);$env:Path" # For unit.exe
10351030
Install-PythonWheel "unittest2" # Required for testing LLDB
10361031
}

0 commit comments

Comments
 (0)