authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-04-15 10:58:53-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-04-15 10:58:53-07:00
log68e69aae2b1e1ee931de74d2a8d71116bb68ba6f
tree575dde03453aa8e1a568d750b3b70a29ad8f49c4
parent2a6ec2e15581d1c113890a7300dbff123f1a10ef

build.zig: omit LLVMTableGen from llvm libs


1 files changed, 2 insertions(+), 2 deletions(-)

build.zig+2-2
...@@ -743,7 +743,8 @@ const lld_libs = [_][]const u8{...@@ -743,7 +743,8 @@ const lld_libs = [_][]const u8{
743};743};
744// This list can be re-generated with `llvm-config --libfiles` and then744// This list can be re-generated with `llvm-config --libfiles` and then
745// reformatting using your favorite text editor. Note we do not execute745// reformatting using your favorite text editor. Note we do not execute
746// `llvm-config` here because we are cross compiling.746// `llvm-config` here because we are cross compiling. Also omit LLVMTableGen
747// from these libs.
747const llvm_libs = [_][]const u8{748const llvm_libs = [_][]const u8{
748 "LLVMWindowsManifest",749 "LLVMWindowsManifest",
749 "LLVMXRay",750 "LLVMXRay",
...@@ -895,7 +896,6 @@ const llvm_libs = [_][]const u8{...@@ -895,7 +896,6 @@ const llvm_libs = [_][]const u8{
895 "LLVMRemarks",896 "LLVMRemarks",
896 "LLVMBitstreamReader",897 "LLVMBitstreamReader",
897 "LLVMBinaryFormat",898 "LLVMBinaryFormat",
898 "LLVMTableGen",
899 "LLVMSupport",899 "LLVMSupport",
900 "LLVMDemangle",900 "LLVMDemangle",
901};901};