From owner-svn-src-all@FreeBSD.ORG Sat Nov 10 22:16:59 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B2E95AC; Sat, 10 Nov 2012 22:16:59 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from tensor.andric.com (tensor.andric.com [87.251.56.140]) by mx1.freebsd.org (Postfix) with ESMTP id 663928FC08; Sat, 10 Nov 2012 22:16:59 +0000 (UTC) Received: from [192.168.0.6] (spaceball.home.andric.com [192.168.0.6]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id 19ADD5C59; Sat, 10 Nov 2012 23:16:58 +0100 (CET) Message-ID: <509ED25E.3070302@FreeBSD.org> Date: Sat, 10 Nov 2012 23:17:02 +0100 From: Dimitry Andric Organization: The FreeBSD Project User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: Konstantin Belousov Subject: Re: svn commit: r242879 - in head/lib: libc/gen msun/src References: <201211102122.qAALMAnO014246@svn.freebsd.org> <20121110214345.GT73505@kib.kiev.ua> In-Reply-To: <20121110214345.GT73505@kib.kiev.ua> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Nov 2012 22:16:59 -0000 On 2012-11-10 22:43, Konstantin Belousov wrote: > On Sat, Nov 10, 2012 at 09:22:10PM +0000, Dimitry Andric wrote: ... >> Author: dim >> Date: Sat Nov 10 21:22:10 2012 >> New Revision: 242879 >> URL: http://svnweb.freebsd.org/changeset/base/242879 >> >> Log: >> Only define isnan, isnanf, __isnan and __isnanf in libc.so, not in >> libc.a and libc_p.a. In addition, define isnan in libm.a and libm_p.a, >> but not in libm.so. >> >> This makes it possible to statically link executables using both isnan >> and isnanf with libc and libm. ... > So you broke ABI for libm ? No, both libc.so and libm.so are the same as before. Only the .a files are changed. I should probably have made the commit message more clear, sorry about that.