svn commit: r338730 - in projects/clang700-import: contrib/llvm/tools/clang/lib/Basic contrib/llvm/tools/lld/docs lib/clang/include/clang/Basic lib/clang/include/lld/Common lib/clang/include/llvm/S...

Dimitry Andric dim at FreeBSD.org
Mon Sep 17 19:04:17 UTC 2018


Author: dim
Date: Mon Sep 17 19:04:15 2018
New Revision: 338730
URL: https://svnweb.freebsd.org/changeset/base/338730

Log:
  Merge llvm, clang, lld, lldb, compiler-rt and libc++ 7.0.0 release
  r342383, and bump version numbers.
  
  PR:		230240, 230355

Modified:
  projects/clang700-import/contrib/llvm/tools/clang/lib/Basic/Version.cpp
  projects/clang700-import/contrib/llvm/tools/lld/docs/ReleaseNotes.rst
  projects/clang700-import/lib/clang/include/clang/Basic/Version.inc
  projects/clang700-import/lib/clang/include/lld/Common/Version.inc
  projects/clang700-import/lib/clang/include/llvm/Support/VCSRevision.h
Directory Properties:
  projects/clang700-import/contrib/compiler-rt/   (props changed)
  projects/clang700-import/contrib/libc++/   (props changed)
  projects/clang700-import/contrib/llvm/   (props changed)
  projects/clang700-import/contrib/llvm/tools/clang/   (props changed)
  projects/clang700-import/contrib/llvm/tools/lld/   (props changed)
  projects/clang700-import/contrib/llvm/tools/lldb/   (props changed)

Modified: projects/clang700-import/contrib/llvm/tools/clang/lib/Basic/Version.cpp
==============================================================================
--- projects/clang700-import/contrib/llvm/tools/clang/lib/Basic/Version.cpp	Mon Sep 17 18:56:47 2018	(r338729)
+++ projects/clang700-import/contrib/llvm/tools/clang/lib/Basic/Version.cpp	Mon Sep 17 19:04:15 2018	(r338730)
@@ -36,7 +36,7 @@ std::string getClangRepositoryPath() {
 
   // If the SVN_REPOSITORY is empty, try to use the SVN keyword. This helps us
   // pick up a tag in an SVN export, for example.
-  StringRef SVNRepository("$URL: https://llvm.org/svn/llvm-project/cfe/branches/release_70/lib/Basic/Version.cpp $");
+  StringRef SVNRepository("$URL: https://llvm.org/svn/llvm-project/cfe/tags/RELEASE_700/final/lib/Basic/Version.cpp $");
   if (URL.empty()) {
     URL = SVNRepository.slice(SVNRepository.find(':'),
                               SVNRepository.find("/lib/Basic"));

Modified: projects/clang700-import/contrib/llvm/tools/lld/docs/ReleaseNotes.rst
==============================================================================
--- projects/clang700-import/contrib/llvm/tools/lld/docs/ReleaseNotes.rst	Mon Sep 17 18:56:47 2018	(r338729)
+++ projects/clang700-import/contrib/llvm/tools/lld/docs/ReleaseNotes.rst	Mon Sep 17 19:04:15 2018	(r338730)
@@ -10,15 +10,25 @@ Introduction
 
 lld is a high-performance linker that supports ELF (Unix), COFF (Windows),
 Mach-O (macOS), MinGW and WebAssembly. lld is command-line-compatible with GNU
-linkers and Microsoft link.exe, and is significantly faster than these system
+linkers and Microsoft link.exe, and is significantly faster than the system
 default linkers.
 
-lld 7 for ELF and COFF are production-ready. lld/ELF can build the entire
-FreeBSD/AMD64 and will be the default linker of the next version of the
-operating system. lld/COFF is being used to build popular large programs such as
-the Chrome web browser. Mach-O, MinGW and WebAssembly supports are still
-experimental.
+lld 7 for ELF, COFF and MinGW are production-ready.
 
+* lld/ELF can build the entire FreeBSD/{AMD64,ARMv7} and will be the default
+  linker of the next version of the operating system.
+
+* lld/COFF is being used to create official builds of large popular programs
+  such as Chrome and Firefox.
+
+* lld/MinGW is being used by Firefox for their MinGW builds. lld/MinGW still
+  needs a sysroot specifically built for lld, with llvm-dlltool, though.
+
+* lld/WebAssembly is used as the default (only) linker in Emscripten when using
+  the upstream LLVM compiler.
+
+* lld/Mach-O is still experimental.
+
 Non-comprehensive list of changes in this release
 =================================================
 
@@ -95,6 +105,8 @@ COFF Improvements
 * Sped up PDB file creation.
 
 * Changed section layout to improve compatibility with link.exe.
+
+* `/subsystem` inference is improved to cover more corner cases.
 
 * Added the following flags: ``--color-diagnostics={always,never,auto}``,
   ``--no-color-diagnostics``, ``/brepro``, ``/debug:full``, ``/debug:ghash``,

Modified: projects/clang700-import/lib/clang/include/clang/Basic/Version.inc
==============================================================================
--- projects/clang700-import/lib/clang/include/clang/Basic/Version.inc	Mon Sep 17 18:56:47 2018	(r338729)
+++ projects/clang700-import/lib/clang/include/clang/Basic/Version.inc	Mon Sep 17 19:04:15 2018	(r338730)
@@ -8,4 +8,4 @@
 
 #define	CLANG_VENDOR			"FreeBSD "
 
-#define	SVN_REVISION			"341916"
+#define	SVN_REVISION			"342383"

Modified: projects/clang700-import/lib/clang/include/lld/Common/Version.inc
==============================================================================
--- projects/clang700-import/lib/clang/include/lld/Common/Version.inc	Mon Sep 17 18:56:47 2018	(r338729)
+++ projects/clang700-import/lib/clang/include/lld/Common/Version.inc	Mon Sep 17 19:04:15 2018	(r338730)
@@ -7,4 +7,4 @@
 
 #define LLD_REPOSITORY_STRING "FreeBSD"
 // <Upstream revision at import>-<Local identifier in __FreeBSD_version style>
-#define LLD_REVISION_STRING "341916-1200005"
+#define LLD_REVISION_STRING "342383-1200005"

Modified: projects/clang700-import/lib/clang/include/llvm/Support/VCSRevision.h
==============================================================================
--- projects/clang700-import/lib/clang/include/llvm/Support/VCSRevision.h	Mon Sep 17 18:56:47 2018	(r338729)
+++ projects/clang700-import/lib/clang/include/llvm/Support/VCSRevision.h	Mon Sep 17 19:04:15 2018	(r338730)
@@ -1,2 +1,2 @@
 /* $FreeBSD$ */
-#define LLVM_REVISION "svn-r341916"
+#define LLVM_REVISION "svn-r342383"


More information about the svn-src-projects mailing list