From 68e69aae2b1e1ee931de74d2a8d71116bb68ba6f Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Thu, 15 Apr 2021 10:58:53 -0700 Subject: [PATCH] build.zig: omit LLVMTableGen from llvm libs --- build.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.zig b/build.zig index a5e585ed7c..6ea2d5157d 100644 --- a/build.zig +++ b/build.zig @@ -743,7 +743,8 @@ const lld_libs = [_][]const u8{ }; // This list can be re-generated with `llvm-config --libfiles` and then // reformatting using your favorite text editor. Note we do not execute -// `llvm-config` here because we are cross compiling. +// `llvm-config` here because we are cross compiling. Also omit LLVMTableGen +// from these libs. const llvm_libs = [_][]const u8{ "LLVMWindowsManifest", "LLVMXRay", @@ -895,7 +896,6 @@ const llvm_libs = [_][]const u8{ "LLVMRemarks", "LLVMBitstreamReader", "LLVMBinaryFormat", - "LLVMTableGen", "LLVMSupport", "LLVMDemangle", };