We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcebcd3 commit 345452cCopy full SHA for 345452c
utils/build.ps1
@@ -1026,7 +1026,12 @@ function Get-Dependencies {
1026
Install-PythonWheel "packaging" # For building LLVM 18+
1027
Install-PythonWheel "distutils" # Required for SWIG support
1028
if ($Test -contains "lldb") {
1029
- Install-PythonWheel "psutil" # Required for testing LLDB
+ if ($env:PROCESSOR_ARCHITECTURE -eq "ARM64") {
1030
+ Write-Output "Installing 'psutil' ..."
1031
+ Invoke-Program -OutNull "$(Get-PythonExecutable)" '-I' -m pip install "psutil==6.1.0" --disable-pip-version-check
1032
+ } else {
1033
+ Install-PythonWheel "psutil" # Required for testing LLDB
1034
+ }
1035
$env:Path = "$(Get-PythonScriptsPath);$env:Path" # For unit.exe
1036
Install-PythonWheel "unittest2" # Required for testing LLDB
1037
}
0 commit comments