aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2019-08-23 13:04:58 +0000
committerNico Weber <nicolasweber@gmx.de>2019-08-23 13:04:58 +0000
commit86a75cba21952f51b52b5b00fd09ff3123956589 (patch)
tree50fd07ece7a4a31220b25ab5e4685bef1dd4a882
parenta9eab33af4b01008cd496acb0876ebfb1af70ae9 (diff)
Mention r363078 in the lld release notes.
git-svn-id: https://llvm.org/svn/llvm-project/lld/branches/release_90@369753 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/ReleaseNotes.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst
index 2d358bf8f..ea3876f81 100644
--- a/docs/ReleaseNotes.rst
+++ b/docs/ReleaseNotes.rst
@@ -51,6 +51,12 @@ COFF Improvements
input files define resources with the same type, name, and language.
This can be demoted to a warning using ``/force:multipleres``.
+* lld-link now rejects more than one resource obj input files, matching
+ link.exe. Previously, lld-link would silently ignore all but one.
+ If you hit this: Don't pass resource obj files to the linker, instead pass
+ res files to the linker directly. Don't put res files in static libraries,
+ pass them on the command line.
+
* Having more than two ``/natvis:`` now works correctly; it used to not
work for larger binaries before.