[llvm] 0d13c59 - [gn build] Add lldb to default target on Windows

Nico Weber via llvm-commits llvm-commits at lists.llvm.org
Wed Oct 27 06:40:05 PDT 2021


Author: Nico Weber
Date: 2021-10-27T09:39:57-04:00
New Revision: 0d13c595fc38f8a875186dbb1877e2fe36e40e3a

URL: https://github.com/llvm/llvm-project/commit/0d13c595fc38f8a875186dbb1877e2fe36e40e3a
DIFF: https://github.com/llvm/llvm-project/commit/0d13c595fc38f8a875186dbb1877e2fe36e40e3a.diff

LOG: [gn build] Add lldb to default target on Windows

It seems to build fine (even though some tests fail), so might
as well let the bots build it. If it turns out to break a lot,
we can always turn it back off.

Differential Revision: https://reviews.llvm.org/D112620

Added: 
    

Modified: 
    llvm/utils/gn/secondary/BUILD.gn

Removed: 
    


################################################################################
diff  --git a/llvm/utils/gn/secondary/BUILD.gn b/llvm/utils/gn/secondary/BUILD.gn
index d5b47138ead1..314ae8d82b24 100644
--- a/llvm/utils/gn/secondary/BUILD.gn
+++ b/llvm/utils/gn/secondary/BUILD.gn
@@ -12,6 +12,7 @@ group("default") {
     "//compiler-rt/include",
     "//compiler-rt/lib/scudo",
     "//lld/test",
+    "//lldb/test",
     "//llvm/test",
   ]
   if (current_os == "linux") {
@@ -20,9 +21,6 @@ group("default") {
       "//libcxxabi",
     ]
   }
-  if (current_os == "linux" || current_os == "mac") {
-    deps += [ "//lldb/test" ]
-  }
   if (current_os == "linux" || current_os == "android") {
     deps += [ "//compiler-rt/test/hwasan" ]
   }


        


More information about the llvm-commits mailing list