From patchwork Fri Nov 24 18:39:26 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 841153 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-87512-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="lNlUB4mP"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3yk4jm0Mv9z9s72 for ; Sat, 25 Nov 2017 05:39:39 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:mime-version :content-type; q=dns; s=default; b=pzOsfNuCXYNSvPJCpF1Fk5cRX8z+p UUXA9KtBxs5zGPAkFbmx3tv5ObwQYaa9/QgQrjCAfnEyRRc1EmGgNaP0VQyy+kDl 8JCqXeRc/ZVIZcenLJLSaEIdTUVyjx1ml73HewkYTSAB5oGL3r4g3pNYIRuVYywI h/D7SL9hu4zn9c= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:mime-version :content-type; s=default; bh=DlBsiSgotNZHRxrVHr1psdM2TUY=; b=lNl UB4mPsvZiDTj6YGqY43Pnb7KbaI77JJjIkTd1gkNfdPg8mpCDFhbIYIhP/dTuKL4 98v3vDg1pkAvNlieeE3Fu3U5+hXZiju1/Dc0q6zTY2vccBHgdL/ks5kzw6N+WLn1 rSaJe+ls+DmbYex+Rfzd05h//ddELhWTb1T9BnkA= Received: (qmail 48961 invoked by alias); 24 Nov 2017 18:39:33 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 47341 invoked by uid 89); 24 Nov 2017 18:39:33 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.3 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KB_WAM_FROM_NAME_SINGLEWORD, RCVD_IN_DNSWL_NONE, SPF_PASS, URIBL_RED autolearn=ham version=3.3.2 spammy=Hx-languages-length:1217, 1278 X-HELO: relay1.mentorg.com Date: Fri, 24 Nov 2017 18:39:26 +0000 From: Joseph Myers To: Subject: Move wcstof128 symbol versions to wcsmbs/Versions [committed] Message-ID: User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 X-ClientProxiedBy: svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) To SVR-IES-MBX-03.mgc.mentorg.com (139.181.222.3) This patch moves wcstof128 and wcstof128_l Versions file entries from stdlib/Versions to wcsmbs/Versions, which is a more appropriate place for them. Tested for x86_64, and with build-many-glibcs.py that installed stripped shared libraries are unchanged by the patch. Committed. 2017-11-24 Joseph Myers * stdlib/Versions (libc): Move entries for wcstof128 and wcstof128_l to .... * wcsmbs/Versions (libc): ... here. Include . diff --git a/stdlib/Versions b/stdlib/Versions index 9d96de5..bf2172f 100644 --- a/stdlib/Versions +++ b/stdlib/Versions @@ -127,8 +127,6 @@ libc { strfromf128; strtof128; strtof128_l; - wcstof128; - wcstof128_l; } %endif GLIBC_PRIVATE { diff --git a/wcsmbs/Versions b/wcsmbs/Versions index b8f7bd7..df6e7cd 100644 --- a/wcsmbs/Versions +++ b/wcsmbs/Versions @@ -1,3 +1,4 @@ +%include libc { GLIBC_2.0 { # functions used in inline functions or macros @@ -34,4 +35,10 @@ libc { GLIBC_2.16 { c16rtomb; c32rtomb; mbrtoc16; mbrtoc32; } +%ifdef FLOAT128_VERSION + FLOAT128_VERSION { + wcstof128; + wcstof128_l; + } +%endif }