aboutsummaryrefslogtreecommitdiff
path: root/lldb/docs
diff options
context:
space:
mode:
authorPo-yao Chang <poyaoc97@gmail.com>2024-02-11 09:36:59 +0800
committerGitHub <noreply@github.com>2024-02-11 09:36:59 +0800
commitd70b1c1206d93b5cdf31fa330d5717eb73e8794a (patch)
treee67db4d68e15c72ea844810c2b71530e9d39b690 /lldb/docs
parentb17348c3b541d7fc7ec441c98db75c18d8959910 (diff)
downloadllvm-d70b1c1206d93b5cdf31fa330d5717eb73e8794a.zip
llvm-d70b1c1206d93b5cdf31fa330d5717eb73e8794a.tar.gz
llvm-d70b1c1206d93b5cdf31fa330d5717eb73e8794a.tar.bz2
[LLDB][Docs] Replace LLDB_RELOCATABLE_PYTHON with LLDB_EMBED_PYTHON_HOME (#81310)
LLDB_RELOCATABLE_PYTHON was removed in LLVM 11 (https://github.com/llvm/llvm-project/commit/3ec3f62f0a0b1ac13230922c91ffc988c1b1e8d5).
Diffstat (limited to 'lldb/docs')
-rw-r--r--lldb/docs/resources/build.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/docs/resources/build.rst b/lldb/docs/resources/build.rst
index 0ccfef32..55fe73c 100644
--- a/lldb/docs/resources/build.rst
+++ b/lldb/docs/resources/build.rst
@@ -278,12 +278,12 @@ are commonly used on Windows.
crash, rather than having to reproduce a failure or use a crash dump.
* ``PYTHON_HOME`` (Required): Path to the folder where the Python distribution
is installed. For example, ``C:\Python35``.
-* ``LLDB_RELOCATABLE_PYTHON`` (Default=0): When this is 0, LLDB will bind
+* ``LLDB_EMBED_PYTHON_HOME`` (Default=1 on Windows): When this is 1, LLDB will bind
statically to the location specified in the ``PYTHON_HOME`` CMake variable,
ignoring any value of ``PYTHONHOME`` set in the environment. This is most
useful for developers who simply want to run LLDB after they build it. If you
wish to move a build of LLDB to a different machine where Python will be in a
- different location, setting ``LLDB_RELOCATABLE_PYTHON`` to 1 will cause
+ different location, setting ``LLDB_EMBED_PYTHON_HOME`` to 0 will cause
Python to use its default mechanism for finding the python installation at
runtime (looking for installed Pythons, or using the ``PYTHONHOME``
environment variable if it is specified).