svn commit: r332899 - stable/11/lib/clang/include/lld/Common

Ed Maste emaste at FreeBSD.org
Tue Apr 24 00:47:19 UTC 2018


Author: emaste
Date: Tue Apr 24 00:47:17 2018
New Revision: 332899
URL: https://svnweb.freebsd.org/changeset/base/332899

Log:
  MFC r332649: lld: add a __FreeBSD_version-style identifier to version
  
  This will faciliate a WITH_SYSTEM_LINKER option.
  
  MFC r332803:
  lld: use correct number of digits in __FreeBSD_version-style ID
  
  __FreeBSD_version-style IDs should have 5 digits following the major.
  
  Also, use 11xxxxx for stable/11.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  stable/11/lib/clang/include/lld/Common/Version.inc
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/lib/clang/include/lld/Common/Version.inc
==============================================================================
--- stable/11/lib/clang/include/lld/Common/Version.inc	Mon Apr 23 23:07:57 2018	(r332898)
+++ stable/11/lib/clang/include/lld/Common/Version.inc	Tue Apr 24 00:47:17 2018	(r332899)
@@ -4,5 +4,7 @@
 #define LLD_VERSION_STRING "6.0.0"
 #define LLD_VERSION_MAJOR 6
 #define LLD_VERSION_MINOR 0
-#define LLD_REVISION_STRING "326565"
+
 #define LLD_REPOSITORY_STRING "FreeBSD"
+// <Upstream revision at import>-<Local identifier in __FreeBSD_version style>
+#define LLD_REVISION_STRING "326565-1100001"


More information about the svn-src-all mailing list