[lld] [lld-macho] Don't double emit reexported libraries (PR #132275)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 20 12:47:48 PDT 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff 8aafbfdc3aa439e578f8d617a478634dd61b0349 398bcfa1599b4850b188485952dd86bc630fa72d --extensions cpp -- lld/MachO/Writer.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/lld/MachO/Writer.cpp b/lld/MachO/Writer.cpp
index 7a5fdcd227..f312828819 100644
--- a/lld/MachO/Writer.cpp
+++ b/lld/MachO/Writer.cpp
@@ -941,16 +941,17 @@ template <class LP> void Writer::createLoadCommands() {
LoadCommandType lcType = LC_LOAD_DYLIB;
if (dylibFile->reexport) {
if (dylibFile->forceWeakImport)
- warn(path::filename(dylibFile->getName()) + " is re-exported so cannot be weak-linked");
+ warn(path::filename(dylibFile->getName()) +
+ " is re-exported so cannot be weak-linked");
lcType = LC_REEXPORT_DYLIB;
- } else if (dylibFile->forceWeakImport || dylibFile->refState == RefState::Weak) {
+ } else if (dylibFile->forceWeakImport ||
+ dylibFile->refState == RefState::Weak) {
lcType = LC_LOAD_WEAK_DYLIB;
}
in.header->addLoadCommand(make<LCDylib>(lcType, dylibFile->installName,
- dylibFile->compatibilityVersion,
- dylibFile->currentVersion));
-
+ dylibFile->compatibilityVersion,
+ dylibFile->currentVersion));
}
for (const auto &dyldEnv : config->dyldEnvs)
``````````
</details>
https://github.com/llvm/llvm-project/pull/132275
More information about the llvm-commits
mailing list