From owner-svn-src-head@FreeBSD.ORG Tue Apr 17 09:43:49 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C0C81106564A; Tue, 17 Apr 2012 09:43:49 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from mx1.sbone.de (mx1.sbone.de [IPv6:2a01:4f8:130:3ffc::401:25]) by mx1.freebsd.org (Postfix) with ESMTP id 4FDC58FC08; Tue, 17 Apr 2012 09:43:49 +0000 (UTC) Received: from mail.sbone.de (mail.sbone.de [IPv6:fde9:577b:c1a9:31::2013:587]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.sbone.de (Postfix) with ESMTPS id E4C6F25D385D; Tue, 17 Apr 2012 09:43:47 +0000 (UTC) Received: from content-filter.sbone.de (content-filter.sbone.de [IPv6:fde9:577b:c1a9:31::2013:2742]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.sbone.de (Postfix) with ESMTPS id 1414BBE5061; Tue, 17 Apr 2012 09:43:47 +0000 (UTC) X-Virus-Scanned: amavisd-new at sbone.de Received: from mail.sbone.de ([IPv6:fde9:577b:c1a9:31::2013:587]) by content-filter.sbone.de (content-filter.sbone.de [fde9:577b:c1a9:31::2013:2742]) (amavisd-new, port 10024) with ESMTP id Ee7hz+KlFQ1T; Tue, 17 Apr 2012 09:43:45 +0000 (UTC) Received: from orange-en1.sbone.de (orange-en1.sbone.de [IPv6:fde9:577b:c1a9:31:cabc:c8ff:fecf:e8e3]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by mail.sbone.de (Postfix) with ESMTPSA id 596BBBE5060; Tue, 17 Apr 2012 09:43:45 +0000 (UTC) Mime-Version: 1.0 (Apple Message framework v1084) Content-Type: text/plain; charset=us-ascii From: "Bjoern A. Zeeb" In-Reply-To: Date: Tue, 17 Apr 2012 09:43:44 +0000 Content-Transfer-Encoding: quoted-printable Message-Id: References: <201204170722.q3H7ME6A070934@svn.freebsd.org> To: Jason Evans X-Mailer: Apple Mail (2.1084) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r234370 - in head: contrib/jemalloc contrib/jemalloc/doc contrib/jemalloc/include contrib/jemalloc/include/jemalloc contrib/jemalloc/include/jemalloc/internal contrib/jemalloc/src inclu... X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Apr 2012 09:43:49 -0000 On 17. Apr 2012, at 09:35 , Bjoern A. Zeeb wrote: >=20 > On 17. Apr 2012, at 07:22 , Jason Evans wrote: >=20 >> Author: jasone >> Date: Tue Apr 17 07:22:14 2012 >> New Revision: 234370 >> URL: http://svn.freebsd.org/changeset/base/234370 >>=20 >> Log: >> Import jemalloc 9ef7f5dc34ff02f50d401e41c8d9a4a928e7c2aa (dev branch, >> prior to 3.0.0 release) as contrib/jemalloc, and integrate it into = libc. >> The code being imported by this commit diverged from >> lib/libc/stdlib/malloc.c in March 2010, which means that a portion of >> the jemalloc 1.0.0 ChangeLog entries are relevant, as are the entries >> for all subsequent releases. >=20 > I am seeing a lot of build failures on all archs with: >=20 > = /scratch/tmp/bz/obj//i386.i386/scratch/tmp/bz/head.svn/tmp/usr/lib/libc.so= : undefined reference to `__sync_sub_and_fetch_8' > = /scratch/tmp/bz/obj//i386.i386/scratch/tmp/bz/head.svn/tmp/usr/lib/libc.so= : undefined reference to `__sync_add_and_fetch_8' >=20 > = /scratch/tmp/bz/obj//arm.armeb/scratch/tmp/bz/head.svn/tmp/usr/lib/libc.so= : undefined reference to `__sync_sub_and_fetch_8' > = /scratch/tmp/bz/obj//arm.armeb/scratch/tmp/bz/head.svn/tmp/usr/lib/libc.so= : undefined reference to `__sync_sub_and_fetch_4' > = /scratch/tmp/bz/obj//arm.armeb/scratch/tmp/bz/head.svn/tmp/usr/lib/libc.so= : undefined reference to `__sync_add_and_fetch_4' > = /scratch/tmp/bz/obj//arm.armeb/scratch/tmp/bz/head.svn/tmp/usr/lib/libc.so= : undefined reference to `__sync_add_and_fetch_8' Actually it seems these failed: arm.armeb buildworld failed, check _.arm.armeb.buildworld for details arm.arm buildworld failed, check _.arm.arm.buildworld for details mips.mips64 buildworld failed, check _.mips.mips64.buildworld for = details mips.mipsel buildworld failed, check _.mips.mipsel.buildworld for = details mips.mips64el buildworld failed, check _.mips.mips64el.buildworld for = details mips.mipsn32 buildworld failed, check _.mips.mipsn32.buildworld for = details mips.mips buildworld failed, check _.mips.mips.buildworld for details i386.i386 buildworld failed, check _.i386.i386.buildworld for details pc98.i386 buildworld failed, check _.pc98.i386.buildworld for details powerpc.powerpc buildworld failed, check _.powerpc.powerpc.buildworld = for details powerpc.powerpc64 buildworld failed, check = _.powerpc.powerpc64.buildworld for details --=20 Bjoern A. Zeeb You have to have visions! It does not matter how good you are. It matters what good you do!