From owner-freebsd-current@freebsd.org Tue Feb 21 12:48:28 2017 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 E2F95CE595A for ; Tue, 21 Feb 2017 12:48:28 +0000 (UTC) (envelope-from Hartmut.Brandt@dlr.de) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id CE2981A53 for ; Tue, 21 Feb 2017 12:48:28 +0000 (UTC) (envelope-from Hartmut.Brandt@dlr.de) Received: by mailman.ysv.freebsd.org (Postfix) id CAB45CE5959; Tue, 21 Feb 2017 12:48:28 +0000 (UTC) Delivered-To: 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 CA5E0CE5958 for ; Tue, 21 Feb 2017 12:48:28 +0000 (UTC) (envelope-from Hartmut.Brandt@dlr.de) Received: from mailhost.dlr.de (mailhost.dlr.de [129.247.252.32]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mailhost.dlr.de", Issuer "DLR CA - G02" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6B50E1A52 for ; Tue, 21 Feb 2017 12:48:28 +0000 (UTC) (envelope-from Hartmut.Brandt@dlr.de) Received: from DLREXHUB02.intra.dlr.de (172.21.152.140) by mailhost.dlr.de (172.21.163.100) with Microsoft SMTP Server (TLS) id 14.3.319.2; Tue, 21 Feb 2017 13:48:12 +0100 Received: from KNOP-BEAGLE.kn.op.dlr.de (129.247.178.136) by smtp.dlr.de (172.21.152.151) with Microsoft SMTP Server (TLS) id 14.3.319.2; Tue, 21 Feb 2017 13:48:16 +0100 Date: Tue, 21 Feb 2017 13:48:23 +0100 From: Hartmut Brandt X-X-Sender: brandt_h@KNOP-BEAGLE.kn.op.dlr.de To: Subject: int128_t and uint128_t typeinfo Message-ID: User-Agent: Alpine 2.20 (BSF 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="US-ASCII" X-TM-AS-Product-Ver: SMEX-11.0.0.4283-8.100.1062-22898.006 X-TM-AS-Result: No--7.402900-5.000000-31 X-TM-AS-MatchedID: 700752-710739-702037-702626-188198-706891-187134-139504-7 04421-106230-105250-700107-148004-148050-10019-41000-42000-42003 X-TM-AS-User-Approved-Sender: No X-TM-AS-User-Blocked-Sender: No X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.23 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, 21 Feb 2017 12:48:29 -0000 Hi, it looks like the typeinfo for __int128_t and __uint128_t is missing from our dynamically linked libcxxrt. I added it like: Index: lib/libcxxrt/Version.map =================================================================== --- lib/libcxxrt/Version.map (revision 313007) +++ lib/libcxxrt/Version.map (working copy) @@ -192,6 +192,11 @@ "typeinfo name for unsigned short"; "typeinfo name for double"; + "typeinfo for __int128"; + "typeinfo for unsigned __int128"; + "typeinfo name for __int128"; + "typeinfo name for unsigned __int128"; + "typeinfo name for bool*"; "typeinfo name for wchar_t*"; "typeinfo name for short*"; I'm not sure whether this is the right place in the file where to add it. Could somebody please check? Thanks, harti@