[PATCH] D141881: [gn build] Enable check-bolt on Linux

Arthur Eubanks via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jan 16 17:49:41 PST 2023


aeubanks created this revision.
aeubanks added a reviewer: thakis.
Herald added a project: All.
aeubanks requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

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


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D141881

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


Index: llvm/utils/gn/secondary/BUILD.gn
===================================================================
--- llvm/utils/gn/secondary/BUILD.gn
+++ llvm/utils/gn/secondary/BUILD.gn
@@ -32,8 +32,8 @@
     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" ]
   }
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D141881.489661.patch
Type: text/x-patch
Size: 458 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230117/6eaa5ae3/attachment.bin>


More information about the llvm-commits mailing list