[Lldb-commits] [lldb] 393ac21 - [lldb/Test] Pass Make arguments in invocation instead of environment

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Tue Jun 2 16:50:06 PDT 2020


Author: Jonas Devlieghere
Date: 2020-06-02T16:49:58-07:00
New Revision: 393ac216489773e3676ec7d80c3d993f78a29b6a

URL: https://github.com/llvm/llvm-project/commit/393ac216489773e3676ec7d80c3d993f78a29b6a
DIFF: https://github.com/llvm/llvm-project/commit/393ac216489773e3676ec7d80c3d993f78a29b6a.diff

LOG: [lldb/Test] Pass Make arguments in invocation instead of environment

The Darwin builder is passing some of the make arguments trough the
environment instead of the command line. Update the dsym builder to do
the same as the other variants.

Added: 
    

Modified: 
    lldb/packages/Python/lldbsuite/test/plugins/builder_darwin.py

Removed: 
    


################################################################################
diff  --git a/lldb/packages/Python/lldbsuite/test/plugins/builder_darwin.py b/lldb/packages/Python/lldbsuite/test/plugins/builder_darwin.py
index e109f91945eb..e9fc8257dea5 100644
--- a/lldb/packages/Python/lldbsuite/test/plugins/builder_darwin.py
+++ b/lldb/packages/Python/lldbsuite/test/plugins/builder_darwin.py
@@ -16,7 +16,11 @@ def buildDsym(
                     ["MAKE_DSYM=YES",
                      getArchSpec(architecture),
                      getCCSpec(compiler),
-                     "all", getCmdLine(dictionary)])
+                     getDsymutilSpec(),
+                     getSDKRootSpec(),
+                     getModuleCacheSpec(),
+                     "all",
+                     getCmdLine(dictionary)])
 
     runBuildCommands(commands, sender=sender)
 


        


More information about the lldb-commits mailing list