forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 330
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[lld] Fix --exclude-libs broken when --whole-archive is used
Summary: **Problem** `--exclude-libs` does not work for static libraries affected by the `--whole-archive` option. **Description** `--exclude-libs` creates a list of static library paths and does library lookups in this list. `--whole-archive` splits the static libraries that follow it into separate objects. As a result, lld no longer sees static libraries among linked files and does no `--exclude-libs` lookups. **Solution** The proposed solution is to make `--exclude-libs` consider object files too. When lld finds an object file it checks whether this file originates from an archive and, if so, looks the archive up in the `--exclude-libs` list. Reviewers: ruiu, rafael Reviewed By: ruiu Subscribers: asl, ikudrin, llvm-commits, emaste Tags: #lld Differential Revision: https://reviews.llvm.org/D39353 llvm-svn: 316998
- Loading branch information
Showing
2 changed files
with
23 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters