[lld] r279260 - Add a note that 3.9 is a major milestone for us.
Rui Ueyama via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 19 08:30:54 PDT 2016
Author: ruiu
Date: Fri Aug 19 10:30:54 2016
New Revision: 279260
URL: http://llvm.org/viewvc/llvm-project?rev=279260&view=rev
Log:
Add a note that 3.9 is a major milestone for us.
Differential Revision: https://reviews.llvm.org/D23695
Modified:
lld/branches/release_39/docs/ReleaseNotes.rst
Modified: lld/branches/release_39/docs/ReleaseNotes.rst
URL: http://llvm.org/viewvc/llvm-project/lld/branches/release_39/docs/ReleaseNotes.rst?rev=279260&r1=279259&r2=279260&view=diff
==============================================================================
--- lld/branches/release_39/docs/ReleaseNotes.rst (original)
+++ lld/branches/release_39/docs/ReleaseNotes.rst Fri Aug 19 10:30:54 2016
@@ -16,6 +16,14 @@ from the `LLVM releases web site <http:/
What's new in ELF Support?
==========================
+LLD 3.9 is a major milestone for us. It is the first release that can
+link real-world large userland programs, including LLVM/Clang/LLD
+themselves. In fact, for example, it can now be used to produce most
+userland programs distributed as part of FreeBSD.
+
+Many contributors have joined to the project to develop new features,
+port it to new architectures and fix issues since the last release.
+
Link-Time Optimization
----------------------
@@ -83,3 +91,12 @@ Changes to the MIPS Target
* Added support for MIPS N64 ABI.
* Added support for TLS relocations for both O32 and N64 MIPS ABIs.
+
+Building LLVM Toolchain with LLD
+--------------------------------
+
+A new CMake variable, ``LLVM_ENABLE_LLD``, has been added to use LLD
+to build the LLVM toolchain. If the varaible is true, ``-fuse-ld=lld``
+option will be added to linker flags so that ``ld.lld`` is used
+instead of default ``ld``. Because ``-fuse-ld=lld`` is a new compiler
+driver option, you need Clang 3.8 or newer to use the feature.
More information about the llvm-commits
mailing list