authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-10-02 12:40:07-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-10-02 12:40:40-07:00
logb9ec7c56754aea9f3e0f206e42bc89f0bb7305f8
tree2be485b78610bc7cb3a5515849a2432325f44638
parentdde0adcb363f3a3f306c0fc9eaec511cc3b74965

build.zig: update list of LLVM libs

companion commit to 0f35a1f37ade9cf25707c41711b352174f1e2789 fixes compiling with a dev kit.

1 files changed, 6 insertions(+), 4 deletions(-)

build.zig+6-4
......@@ -914,6 +914,7 @@ const llvm_libs = [_][]const u8{
914914 "LLVMWebAssemblyAsmParser",
915915 "LLVMWebAssemblyCodeGen",
916916 "LLVMWebAssemblyDesc",
917 "LLVMWebAssemblyUtils",
917918 "LLVMWebAssemblyInfo",
918919 "LLVMSystemZDisassembler",
919920 "LLVMSystemZAsmParser",
......@@ -989,11 +990,12 @@ const llvm_libs = [_][]const u8{
989990 "LLVMOrcJIT",
990991 "LLVMMCJIT",
991992 "LLVMJITLink",
992 "LLVMOrcTargetProcess",
993 "LLVMOrcShared",
994993 "LLVMInterpreter",
995994 "LLVMExecutionEngine",
996995 "LLVMRuntimeDyld",
996 "LLVMOrcTargetProcess",
997 "LLVMOrcShared",
998 "LLVMDWP",
997999 "LLVMSymbolize",
9981000 "LLVMDebugInfoPDB",
9991001 "LLVMDebugInfoGSYM",
......@@ -1006,7 +1008,6 @@ const llvm_libs = [_][]const u8{
10061008 "LLVMCFGuard",
10071009 "LLVMCoroutines",
10081010 "LLVMObjCARCOpts",
1009 "LLVMHelloNew",
10101011 "LLVMipo",
10111012 "LLVMVectorize",
10121013 "LLVMLinker",
......@@ -1018,6 +1019,7 @@ const llvm_libs = [_][]const u8{
10181019 "LLVMGlobalISel",
10191020 "LLVMMIRParser",
10201021 "LLVMAsmPrinter",
1022 "LLVMDebugInfoMSF",
10211023 "LLVMDebugInfoDWARF",
10221024 "LLVMSelectionDAG",
10231025 "LLVMCodeGen",
......@@ -1039,12 +1041,12 @@ const llvm_libs = [_][]const u8{
10391041 "LLVMMCParser",
10401042 "LLVMMC",
10411043 "LLVMDebugInfoCodeView",
1042 "LLVMDebugInfoMSF",
10431044 "LLVMBitReader",
10441045 "LLVMCore",
10451046 "LLVMRemarks",
10461047 "LLVMBitstreamReader",
10471048 "LLVMBinaryFormat",
1049 "LLVMTableGen",
10481050 "LLVMSupport",
10491051 "LLVMDemangle",
10501052};