Skip to content

Commit

Permalink
Fix llvm-x86_64-debian-dylib buildbot
Browse files Browse the repository at this point in the history
This was broken by 91a3846.

(cherry picked from commit ff4d6c6)
  • Loading branch information
tstellar committed Feb 21, 2024
1 parent 235306b commit 6c90f8d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions llvm/test/lit.cfg.py
Expand Up @@ -414,10 +414,11 @@ def version_int(ver):
config.available_features.add("llvm-dylib")
config.substitutions.append(
(
# libLLVM.so.19.0git
"%llvmdylib",
"{}/libLLVM-{}{}".format(
config.llvm_shlib_dir, config.llvm_dylib_version, config.llvm_shlib_ext
),
"{}/libLLVM{}.{}".format(
config.llvm_shlib_dir, config.llvm_shlib_ext, config.llvm_dylib_version
)
)
)

Expand Down
2 changes: 1 addition & 1 deletion llvm/test/lit.site.cfg.py.in
Expand Up @@ -44,7 +44,7 @@ config.build_examples = @LLVM_BUILD_EXAMPLES@
config.enable_threads = @LLVM_ENABLE_THREADS@
config.build_shared_libs = @BUILD_SHARED_LIBS@
config.link_llvm_dylib = @LLVM_LINK_LLVM_DYLIB@
config.llvm_dylib_version = "@LLVM_VERSION_MAJOR@@LLVM_VERSION_SUFFIX@"
config.llvm_dylib_version = "@LLVM_VERSION_MAJOR@.@LLVM_VERSION_MINOR@@LLVM_VERSION_SUFFIX@"
config.llvm_host_triple = '@LLVM_HOST_TRIPLE@'
config.host_arch = "@HOST_ARCH@"
config.have_opt_viewer_modules = @LLVM_HAVE_OPT_VIEWER_MODULES@
Expand Down

0 comments on commit 6c90f8d

Please sign in to comment.