[zorg] r369446 - Remove LLDB_TEST_USE_CUSTOM_C(XX)_COMPILER

Jonas Devlieghere via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 20 14:22:13 PDT 2019


Author: jdevlieghere
Date: Tue Aug 20 14:22:13 2019
New Revision: 369446

URL: http://llvm.org/viewvc/llvm-project?rev=369446&view=rev
Log:
Remove LLDB_TEST_USE_CUSTOM_C(XX)_COMPILER

Just setting the custom compiler is now sufficient.

Modified:
    zorg/trunk/zorg/jenkins/monorepo_build.py

Modified: zorg/trunk/zorg/jenkins/monorepo_build.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/jenkins/monorepo_build.py?rev=369446&r1=369445&r2=369446&view=diff
==============================================================================
--- zorg/trunk/zorg/jenkins/monorepo_build.py (original)
+++ zorg/trunk/zorg/jenkins/monorepo_build.py Tue Aug 20 14:22:13 2019
@@ -537,8 +537,6 @@ def lldb_cmake_builder(target, variant=N
         # if we have a host compiler available.
         if conf.CC():
             cmake_cmd.extend([
-                '-DLLDB_TEST_USE_CUSTOM_C_COMPILER=On',
-                '-DLLDB_TEST_USE_CUSTOM_CXX_COMPILER=On',
                 '-DLLDB_TEST_C_COMPILER=' + conf.CC(),
                 '-DLLDB_TEST_CXX_COMPILER=' + conf.CC() + "++"
             ])
@@ -551,8 +549,6 @@ def lldb_cmake_builder(target, variant=N
 
     if conf.lldbtestcompiler():
         cmake_cmd.extend([
-            '-DLLDB_TEST_USE_CUSTOM_C_COMPILER=On',
-            '-DLLDB_TEST_USE_CUSTOM_CXX_COMPILER=On',
             '-DLLDB_TEST_C_COMPILER=' + conf.lldbtestcompiler(),
             '-DLLDB_TEST_CXX_COMPILER=' + conf.lldbtestcompiler() + "++"
         ])




More information about the llvm-commits mailing list