Files
llvm14/lld-default-sha1.patch
Aaron Puchert 357118650b - Apply clang-shlib-symbol-versioning.patch to add symbol versions
to libclang-cpp.so similar to libLLVM.so. This is required when
  multiple versions of the library are loaded into the same
  process. (boo#1219405, boo#1221183, boo#1233220)

OBS-URL: https://build.opensuse.org/package/show/devel:tools:compiler/llvm14?expand=0&rev=69
2024-11-17 20:12:41 +00:00

14 lines
454 B
Diff

Index: lld-10.0.0.src/ELF/Driver.cpp
===================================================================
--- lld-10.0.0.src.orig/ELF/Driver.cpp
+++ lld-10.0.0.src/ELF/Driver.cpp
@@ -693,7 +693,7 @@ getBuildId(opt::InputArgList &args) {
return {BuildIdKind::None, {}};
if (arg->getOption().getID() == OPT_build_id)
- return {BuildIdKind::Fast, {}};
+ return {BuildIdKind::Sha1, {}};
StringRef s = arg->getValue();
if (s == "fast")