Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions lld/docs/ld.lld.1
Original file line number Diff line number Diff line change
Expand Up @@ -719,6 +719,19 @@ a given pattern are handled as if they were given as arguments of
Creates a separate output section for every orphan input section.
.It Fl -unresolved-symbols Ns = Ns Ar value
Determine how to handle unresolved symbols.
.Pp
.Bl -tag -width 2n -compact
.It Cm report-all
Report unresolved symbols (default).
.It Cm ignore-in-object-files
Only report unresolved symbols contained in shared libraries. Ignore if the are
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

typo: they/they

Actually, suggest "Report unresolved symbols from shared libraries." and omit "Ignore ..."

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

contained in object files.
.It Cm ignore-in-shared-libs
Only report unresolved symbols contained in object files. Ignore if they are
contained in shared libraries.
.It Cm ignore-all
Do not report unresolved symbols.
.El
.It Fl -use-android-relr-tags
Use SHT_ANDROID_RELR / DT_ANDROID_RELR* tags instead of SHT_RELR / DT_RELR*.
.It Fl v , Fl V
Expand Down
Loading