[llvm] 41e7763 - [gn build] Enable check-bolt on Linux

Arthur Eubanks via llvm-commits llvm-commits at lists.llvm.org
Fri Jan 27 10:15:28 PST 2023


Author: Arthur Eubanks
Date: 2023-01-27T10:14:26-08:00
New Revision: 41e776386dd5930565b338b776816c48245f52f3

URL: https://github.com/llvm/llvm-project/commit/41e776386dd5930565b338b776816c48245f52f3
DIFF: https://github.com/llvm/llvm-project/commit/41e776386dd5930565b338b776816c48245f52f3.diff

LOG: [gn build] Enable check-bolt on Linux

It builds but not all tests pass, mostly due to missing libbolt_rt_instr.a.

Reviewed By: thakis

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

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 396cec75c56f..53dbeb16f81f 100644
--- a/llvm/utils/gn/secondary/BUILD.gn
+++ b/llvm/utils/gn/secondary/BUILD.gn
@@ -32,8 +32,8 @@ group("default") {
     deps += [ "//libunwind" ]
   }
 
-  # FIXME: Add this on linux/win after testing that it builds.
-  if (current_os == "mac") {
+  # FIXME: Add this on win after testing that it builds.
+  if (current_os != "win") {
     deps += [ "//bolt/test" ]
   }
 


        


More information about the llvm-commits mailing list