From owner-freebsd-current@FreeBSD.ORG Tue Apr 17 15:25:51 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 971311065670; Tue, 17 Apr 2012 15:25:51 +0000 (UTC) (envelope-from jasone@canonware.com) Received: from canonware.com (10140.x.rootbsd.net [204.109.63.53]) by mx1.freebsd.org (Postfix) with ESMTP id 7486D8FC0C; Tue, 17 Apr 2012 15:25:51 +0000 (UTC) Received: from [192.168.168.4] (70-91-206-178-BusName-SFBA.hfc.comcastbusiness.net [70.91.206.178]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by canonware.com (Postfix) with ESMTPSA id 9FDD928419; Tue, 17 Apr 2012 08:25:49 -0700 (PDT) Mime-Version: 1.0 (Apple Message framework v1257) Content-Type: text/plain; charset=us-ascii From: Jason Evans In-Reply-To: <201204171126.q3HBQV9v078560@freebsd-current.sentex.ca> Date: Tue, 17 Apr 2012 08:25:48 -0700 Content-Transfer-Encoding: quoted-printable Message-Id: <0A8BE1B2-9DEE-4330-AEB2-568B0707FEAA@canonware.com> References: <201204171126.q3HBQV9v078560@freebsd-current.sentex.ca> To: FreeBSD Tinderbox X-Mailer: Apple Mail (2.1257) X-Mailman-Approved-At: Tue, 17 Apr 2012 15:35:17 +0000 Cc: current@freebsd.org Subject: Re: [head tinderbox] failure on powerpc/powerpc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Apr 2012 15:25:51 -0000 On Apr 17, 2012, at 4:26 AM, FreeBSD Tinderbox wrote: > /obj/powerpc.powerpc/src/tmp/usr/lib/libc.so: undefined reference to = `__sync_sub_and_fetch_8' > /obj/powerpc.powerpc/src/tmp/usr/lib/libc.so: undefined reference to = `__sync_add_and_fetch_8' This (and the similar error for powerpc64, arm, pc98, and i386) is due = to jemalloc incorrectly trying to use compiler intrinsics on all = platforms. Fortunately we have atomic(9), so I should be able to get an = alternate implementation in place today. Jason=