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{
743743};
744744// This list can be re-generated with `llvm-config --libfiles` and then
745745// 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.
747748const llvm_libs = [_][]const u8{
748749 "LLVMWindowsManifest",
749750 "LLVMXRay",
......@@ -895,7 +896,6 @@ const llvm_libs = [_][]const u8{
895896 "LLVMRemarks",
896897 "LLVMBitstreamReader",
897898 "LLVMBinaryFormat",
898 "LLVMTableGen",
899899 "LLVMSupport",
900900 "LLVMDemangle",
901901};