diff options
Diffstat (limited to 'lldb/docs/resources')
-rw-r--r-- | lldb/docs/resources/build.rst | 3 | ||||
-rw-r--r-- | lldb/docs/resources/test.rst | 4 |
2 files changed, 1 insertions, 6 deletions
diff --git a/lldb/docs/resources/build.rst b/lldb/docs/resources/build.rst index d3dbc88eb74..71ce5a6afc4 100644 --- a/lldb/docs/resources/build.rst +++ b/lldb/docs/resources/build.rst @@ -185,8 +185,6 @@ suite. :: > cmake -G Ninja \ - -DLLDB_TEST_USE_CUSTOM_C_COMPILER=On \ - -DLLDB_TEST_USE_CUSTOM_CXX_COMPILER=On \ -DLLDB_TEST_C_COMPILER=<path to C compiler> \ -DLLDB_TEST_CXX_COMPILER=<path to C++ compiler> \ <path to root of llvm source tree> @@ -228,7 +226,6 @@ Sample command line: > cmake -G Ninja^ -DLLDB_TEST_DEBUG_TEST_CRASHES=1^ -DPYTHON_HOME=C:\Python35^ - -DLLDB_TEST_USE_CUSTOM_C_COMPILER=ON^ -DLLDB_TEST_C_COMPILER=d:\src\llvmbuild\ninja_release\bin\clang.exe^ <path to root of llvm source tree> diff --git a/lldb/docs/resources/test.rst b/lldb/docs/resources/test.rst index 0565c338aa4..c996be81fbe 100644 --- a/lldb/docs/resources/test.rst +++ b/lldb/docs/resources/test.rst @@ -30,9 +30,7 @@ target. By default, the ``check-lldb`` target builds the test programs with the same compiler that was used to build LLDB. To build the tests with a different compiler, you can set the ``LLDB_TEST_C_COMPILER`` or the -``LLDB_TEST_CXX_COMPILER`` CMake variables. These variables are ignored unless -the respective ``LLDB_TEST_USE_CUSTOM_C_COMPILER`` and -``LLDB_TEST_USE_CUSTOM_CXX_COMPILER`` are set to ``ON``. +``LLDB_TEST_CXX_COMPILER`` CMake variables. It is possible to customize the architecture of the test binaries and compiler used by appending ``-A`` and ``-C`` options respectively to the CMake variable |