From owner-freebsd-current@freebsd.org Thu Jul 21 20:23:16 2016 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3EAD9BA1C2A; Thu, 21 Jul 2016 20:23:16 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 31D5C1823; Thu, 21 Jul 2016 20:23:16 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 5A8E814B; Thu, 21 Jul 2016 20:23:16 +0000 (UTC) Date: Thu, 21 Jul 2016 20:23:13 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: emaste@FreeBSD.org, kib@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org Message-ID: <1128581535.62.1469132596405.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <45188121.57.1469122333480.JavaMail.jenkins@jenkins-9.freebsd.org> References: <45188121.57.1469122333480.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_i386 - Build #3653 - Fixed MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_i386 X-Jenkins-Result: SUCCESS Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.22 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.22 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jul 2016 20:23:16 -0000 FreeBSD_HEAD_i386 - Build #3653 - Fixed: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/3653/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/3653/cha= nges Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/3653/cons= ole Change summaries: 303158 by emaste: libmd: strip local absolute symbols (to link with lld) Old versions of gas produce an invalid section index. That is ignored by old versions of ld, but prevents a link with lld. Submitted by:=09Rafael =C3=81vila de Esp=C3=ADndola (earlier version) Reviewed by:=09allanjude Sponsored by:=09The FreeBSD Foundation Differential Revision:=09https://reviews.freebsd.org/D6789 303157 by emaste: libcxxrt: add padding in __cxa_allocate_* to fix alignment The addition of the referenceCount to __cxa_allocate_exception put the unwindHeader at offset 0x58 in __cxa_exception, but it requires 16-byte alignment. In order to avoid changing the current __cxa_exception ABI (and thus breaking its consumers), add explicit padding in the allocation routines (and account for it when freeing). This is intended as a lower-risk change for FreeBSD 11. A "more correct" fix should be prepared for upstream and -CURRENT. Reviewed by:=09dim MFC after:=093 days Sponsored by:=09The FreeBSD Foundation Differential Revision:=09https://reviews.freebsd.org/D7271 303156 by emaste: Remove duplicate symbols from libroken version-script.map Upstream commit r24759 (efed563) prefixed some symbols with rk_, but introduced 6 duplicate symbols in the version script (because the rk_-prefixed versions of the symbols were already present). 303155 by kib: Hide counted_warning(9) under #ifdef _KERNEL braces, to allow building subr_prf.c in userspace for libsbuf. Sponsored by:=09The FreeBSD Foundation MFC after:=091 week