From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 98917 invoked by alias); 21 Feb 2020 14:35:47 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 98909 invoked by uid 89); 21 Feb 2020 14:35:47 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-22.1 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.1 spammy= X-HELO: mx0a-001b2d01.pphosted.com Subject: Re: [PATCH 2/7] ldbl-128ibm-compat: enforce correct abi flags on internal file To: "Paul E. Murphy" , libc-alpha@sourceware.org References: <20200214161051.32579-1-murphyp@linux.vnet.ibm.com> <20200214161051.32579-3-murphyp@linux.vnet.ibm.com> From: Paul E Murphy Message-ID: <0f5b4a49-dcfd-7303-768f-febc008fa9f0@linux.ibm.com> Date: Fri, 21 Feb 2020 14:35:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.2.2 MIME-Version: 1.0 In-Reply-To: <20200214161051.32579-3-murphyp@linux.vnet.ibm.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2020-02/txt/msg00918.txt.bz2 Pushed. Again, tested locally as this is not currently use by any target. But testd with build-many-glibcs.py with the other patches committed. On 2/14/20 10:10 AM, Paul E. Murphy wrote: > A number of utility files and helper objects should also be > explicitly configured to build with the ibm128 ABI to prevent > gremlins when enabling IEEE long double. > --- > sysdeps/ieee754/ldbl-128ibm-compat/Makefile | 11 +++++++++++ > 1 file changed, 11 insertions(+) > > diff --git a/sysdeps/ieee754/ldbl-128ibm-compat/Makefile b/sysdeps/ieee754/ldbl-128ibm-compat/Makefile > index 7efbd00089..2dceb658e7 100644 > --- a/sysdeps/ieee754/ldbl-128ibm-compat/Makefile > +++ b/sysdeps/ieee754/ldbl-128ibm-compat/Makefile > @@ -338,6 +338,17 @@ ldbl-ibm128-files := $(objpfx)test-%-ibm128^ \ > $(objpfx)iovswscanf^ \ > $(objpfx)iovfscanf^ \ > $(objpfx)iovfwscanf^ \ > + $(objpfx)mpn2ldbl^ \ > + $(objpfx)ldbl2mpn^ \ > + $(objpfx)strtold_nan^ \ > + $(objpfx)strtold_l^ \ > + $(objpfx)strtold^ \ > + $(objpfx)strfroml^ \ > + $(objpfx)wcstold_nan^ \ > + $(objpfx)wcstold_l^ \ > + $(objpfx)wcstold^ \ > + $(objpfx)printf_fphex^ \ > + $(objpfx)printf_fp^ \ > $(foreach r,$(ldbl-extra-routines),$(objpfx)$(r)^) \ > $(foreach r,$(ldbl-extra-routines),$(objpfx)$(r)-internal^) > obj-suf-foreach = $(foreach suf,$(all-object-suffixes),$(subst ^,$(suf),$(1))) >