diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2025-07-31 11:36:30 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-31 11:36:30 -0700 |
commit | c3927086c8efe70d4b6fada3ee1d64a3c6ab6325 (patch) | |
tree | 77bec311a7a43d8f8aa0a2ca4c88f723d6ad484a /lldb/packages/Python/lldbsuite/test/configuration.py | |
parent | 4cec4938c67b5dec64a2512806f84b3ddcd499f2 (diff) | |
download | llvm-c3927086c8efe70d4b6fada3ee1d64a3c6ab6325.zip llvm-c3927086c8efe70d4b6fada3ee1d64a3c6ab6325.tar.gz llvm-c3927086c8efe70d4b6fada3ee1d64a3c6ab6325.tar.bz2 |
[lldb] Support Darwin cross compilation for remote Linux test suite runs (#151403)
Fix cross-compilation of test inferiors on Darwin, targeting remote
Linux. This requires specifying the target triple and using LLD for
linking.
Fixes #150806
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/configuration.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/configuration.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/configuration.py b/lldb/packages/Python/lldbsuite/test/configuration.py index b2d91fd2..5e38109 100644 --- a/lldb/packages/Python/lldbsuite/test/configuration.py +++ b/lldb/packages/Python/lldbsuite/test/configuration.py @@ -45,6 +45,9 @@ dsymutil = None sdkroot = None make_path = None +# Allow specifying a triple for cross compilation. +triple = None + # The overriden dwarf verison. # Don't use this to test the current compiler's # DWARF version, as this won't be set if the @@ -141,6 +144,7 @@ enabled_plugins = [] # Typical values include Debug, Release, RelWithDebInfo and MinSizeRel cmake_build_type = None + def shouldSkipBecauseOfCategories(test_categories): if use_categories: if ( |