From 8c6675513359079ccc740b2812080c1624c1b546 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Thu, 20 Nov 2025 12:36:08 -0800 Subject: [PATCH] utils: adjust the python path Adjust the python relative path when building LLDB to account for the restructuring in the packaging. --- utils/build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/build.ps1 b/utils/build.ps1 index d29bcc4b03459..ff0b0ceafe951 100644 --- a/utils/build.ps1 +++ b/utils/build.ps1 @@ -2277,7 +2277,7 @@ function Get-CompilersDefines([Hashtable] $Platform, [string] $Variant, [switch] LLDB_PYTHON_EXE_RELATIVE_PATH = "python.exe"; LLDB_PYTHON_EXT_SUFFIX = ".pyd"; LLDB_PYTHON_RELATIVE_PATH = "lib/site-packages"; - LLDB_PYTHON_DLL_RELATIVE_PATH = "../../../../Python-$PythonVersion"; + LLDB_PYTHON_DLL_RELATIVE_PATH = "../../../../Python-$PythonVersion/usr/bin"; LLDB_TABLEGEN = (Join-Path -Path $BuildTools -ChildPath "lldb-tblgen.exe"); LLDB_TEST_MAKE = "$BinaryCache\GnuWin32Make-4.4.1\bin\make.exe"; LLVM_CONFIG_PATH = (Join-Path -Path $BuildTools -ChildPath "llvm-config.exe");