svn commit: r298362 - head/sys/conf

Ed Maste emaste at FreeBSD.org
Wed Apr 20 19:21:27 UTC 2016


Author: emaste
Date: Wed Apr 20 19:21:26 2016
New Revision: 298362
URL: https://svnweb.freebsd.org/changeset/base/298362

Log:
  Update comment added in r298357
  
  The additional regex replacements are actully required due to an
  elfcopy bug which is now fixed (by r298361), not a Clang/GCC issue.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/conf/kern.post.mk

Modified: head/sys/conf/kern.post.mk
==============================================================================
--- head/sys/conf/kern.post.mk	Wed Apr 20 19:13:00 2016	(r298361)
+++ head/sys/conf/kern.post.mk	Wed Apr 20 19:21:26 2016	(r298362)
@@ -364,9 +364,8 @@ embedfs_${MFS_IMAGE:T:R}.o: ${MFS_IMAGE}
 	    --output-target ${EMBEDFS_FORMAT.${MACHINE_ARCH}} \
 	    --binary-architecture ${EMBEDFS_ARCH.${MACHINE_ARCH}} \
 	    ${MFS_IMAGE} ${.TARGET}
-	# Provide set of two distinct regexp to match for GCC (first three)
-	# and for CLANG >= 3.8.0 (last three). First three should be removed
-	# once support for GCC and CLANG < 3.8.0 is abandoned.
+	# Provide set of two distinct regexp to work around an elfcopy bug
+	# fixed in r298361 (last three).
 	${OBJCOPY} \
 	    --rename-section .data=mfs,contents,alloc,load,readonly,data \
 	    --redefine-sym \


More information about the svn-src-head mailing list