From owner-freebsd-numerics@FreeBSD.ORG Mon Apr 15 11:06:48 2013 Return-Path: Delivered-To: freebsd-numerics@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 8C85896C for ; Mon, 15 Apr 2013 11:06:48 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 5C7F17A9 for ; Mon, 15 Apr 2013 11:06:48 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r3FB6mMb015188 for ; Mon, 15 Apr 2013 11:06:48 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r3FB6lN7015186 for freebsd-numerics@FreeBSD.org; Mon, 15 Apr 2013 11:06:47 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 15 Apr 2013 11:06:47 GMT Message-Id: <201304151106.r3FB6lN7015186@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-numerics@FreeBSD.org Subject: Current problem reports assigned to freebsd-numerics@FreeBSD.org X-BeenThere: freebsd-numerics@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Discussions of high quality implementation of libm functions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Apr 2013 11:06:48 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o stand/175811 numerics libstdc++ needs complex support in order use C99 o bin/170206 numerics [msun] [patch] complex arcsinh, log, etc. 2 problems total. From owner-freebsd-numerics@FreeBSD.ORG Thu Apr 18 14:43:40 2013 Return-Path: Delivered-To: freebsd-numerics@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id D42F5794 for ; Thu, 18 Apr 2013 14:43:40 +0000 (UTC) (envelope-from db@db.net) Received: from diana.db.net (unknown [IPv6:2620:64:0:1:223:7dff:fea2:c8f2]) by mx1.freebsd.org (Postfix) with ESMTP id C26CC306 for ; Thu, 18 Apr 2013 14:43:37 +0000 (UTC) Received: from night.db.net (localhost [127.0.0.1]) by diana.db.net (Postfix) with ESMTP id 531C82AA35B for ; Thu, 18 Apr 2013 08:43:36 -0600 (MDT) Received: by night.db.net (Postfix, from userid 1000) id AEE991CC0A; Thu, 18 Apr 2013 09:43:35 -0500 (EST) Date: Thu, 18 Apr 2013 09:43:35 -0500 From: Diane Bruce To: freebsd-numerics@FreeBSD.org Subject: [db@db.net: libstdc++ fun] Message-ID: <20130418144335.GA17561@night.db.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-numerics@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Discussions of high quality implementation of libm functions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Apr 2013 14:43:40 -0000 ----- Forwarded message from Diane Bruce ----- Date: Wed, 17 Apr 2013 18:43:19 -0500 From: Diane Bruce To: theraven@FreeBSD.org, portmgr@FreeBSD.org Subject: libstdc++ fun User-Agent: Mutt/1.5.21 (2010-09-15) Hey, libstdc++ no longer exports expl This function _is_ exported by libm in FreeBSD-HEAD (10) but not in 9-STABLE so ports that used to compile on 9-STABLE are now failing. Perhaps expl needs to be MFC to libm as well? == from include/sys/param.h #define __FreeBSD_version 901504 /* Master, propagated to newvers */ FreeBSD night.db.net 9.1-STABLE FreeBSD 9.1-STABLE #13 r248878: Fri Mar 29 14:35:31 EST 2013 root@night.db.net:/usr/obj/usr/src/sys/GENERIC amd64 grep expl libmath/* libmath/stubs.c:expl(long double x) libmath/stubs.c:frexpl(long double x, int *exp) libmath/stubs.c:ldexpl(long double x, int exp) night% /usr/lib/libm.a |grep expl U frexpl U ldexpl 0000000000000000 T ldexpl s_frexpl.o: 0000000000000000 T frexpl 0000000000000000 a s_frexpl.c night% nm -na /usr/lib/libstdc++.a |grep expl {Nothing} On HEAD #define __FreeBSD_version 1000030 /* Master, propagated to newvers */ FreeBSD odyssey 10.0-CURRENT FreeBSD 10.0-CURRENT #79 r249529M: Mon Apr 15 19:00:03 EDT 2013 root@odyssey:/usr/obj/home/db/svn/system/head/sys/GENERIC amd64 # nm -na /usr/lib/libm.a |grep expl U frexpl U ldexpl s_expl.o: 0000000000000000 a /home/db/svn/system/head/lib/msun/ld80/s_expl.c 0000000000000000 T expl 0000000000000000 T ldexpl s_frexpl.o: 0000000000000000 a /home/db/svn/system/head/lib/msun/src/s_frexpl.c 0000000000000000 T frexpl odyssey# nm -na /usr/lib/libstdc++.a|grep expl {nothing} - Diane -- - db@FreeBSD.org db@db.net http://www.db.net/~db ----- End forwarded message ----- -- - db@FreeBSD.org db@db.net http://www.db.net/~db