motiejus/zig

fork of https://codeberg.org/ziglang/zig
git clone https://git.jakstys.lt/motiejus/zig.git
Log | Tree | Refs | README | LICENSE

commit b9ec7c56754aea9f3e0f206e42bc89f0bb7305f8 (tree)
parent dde0adcb363f3a3f306c0fc9eaec511cc3b74965
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Sat,  2 Oct 2021 12:40:07 -0700

build.zig: update list of LLVM libs

companion commit to 0f35a1f37ade9cf25707c41711b352174f1e2789

fixes compiling with a dev kit.

Diffstat:
Mbuild.zig | 10++++++----
1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/build.zig b/build.zig @@ -914,6 +914,7 @@ const llvm_libs = [_][]const u8{ "LLVMWebAssemblyAsmParser", "LLVMWebAssemblyCodeGen", "LLVMWebAssemblyDesc", + "LLVMWebAssemblyUtils", "LLVMWebAssemblyInfo", "LLVMSystemZDisassembler", "LLVMSystemZAsmParser", @@ -989,11 +990,12 @@ const llvm_libs = [_][]const u8{ "LLVMOrcJIT", "LLVMMCJIT", "LLVMJITLink", - "LLVMOrcTargetProcess", - "LLVMOrcShared", "LLVMInterpreter", "LLVMExecutionEngine", "LLVMRuntimeDyld", + "LLVMOrcTargetProcess", + "LLVMOrcShared", + "LLVMDWP", "LLVMSymbolize", "LLVMDebugInfoPDB", "LLVMDebugInfoGSYM", @@ -1006,7 +1008,6 @@ const llvm_libs = [_][]const u8{ "LLVMCFGuard", "LLVMCoroutines", "LLVMObjCARCOpts", - "LLVMHelloNew", "LLVMipo", "LLVMVectorize", "LLVMLinker", @@ -1018,6 +1019,7 @@ const llvm_libs = [_][]const u8{ "LLVMGlobalISel", "LLVMMIRParser", "LLVMAsmPrinter", + "LLVMDebugInfoMSF", "LLVMDebugInfoDWARF", "LLVMSelectionDAG", "LLVMCodeGen", @@ -1039,12 +1041,12 @@ const llvm_libs = [_][]const u8{ "LLVMMCParser", "LLVMMC", "LLVMDebugInfoCodeView", - "LLVMDebugInfoMSF", "LLVMBitReader", "LLVMCore", "LLVMRemarks", "LLVMBitstreamReader", "LLVMBinaryFormat", + "LLVMTableGen", "LLVMSupport", "LLVMDemangle", };