From patchwork Fri Feb 14 16:10:46 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Paul E. Murphy" X-Patchwork-Id: 1238150 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-109739-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=linux.vnet.ibm.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.a=rsa-sha1 header.s=default header.b=MKSq2d9J; 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 48Jyzk4f34z9sTx for ; Sat, 15 Feb 2020 03:11:14 +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:from:to:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; q=dns; s= default; b=imDMmMptDtIpo28IPHa+IP9ugZ+PQH12Jr6F/G3VXVPfY0PNtH/on WTzjsSFFlWULo6ju+zmUt8p4EEj161Sgs9xAgBUzzDzamah2UUcGdxEWmCTsxycL GTS86Q0Rz/jjWOto5V+dUb465ZTRNzbFRgBPJCric/+lM1gYD8OPSc= 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:from:to:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; s=default; bh=h9QfBWLqaw9Vx1px40PF228T4Gk=; b=MKSq2d9JOk4ufICe4q7W2ZRzvvQJ zaseVaT1yH3gYxsS6faquc+RfSwf6Nn+fzYejHSVqp63yWkxN+jN4rw6GM2JeHIY AoqyDszGTJVv5P/EECFgvPhJxbwhrPtNSbXwzTGIPXC3Yn5fztNfvvXS3yoSw+f/ dvxHquSt0Mdez/g= Received: (qmail 62228 invoked by alias); 14 Feb 2020 16:11:00 -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 62156 invoked by uid 89); 14 Feb 2020 16:10:59 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-25.9 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.1 spammy=r, HX-Languages-Length:1179, HContent-Transfer-Encoding:8bit X-HELO: mx0a-001b2d01.pphosted.com From: "Paul E. Murphy" To: libc-alpha@sourceware.org Subject: [PATCH 2/7] ldbl-128ibm-compat: enforce correct abi flags on internal file Date: Fri, 14 Feb 2020 10:10:46 -0600 Message-Id: <20200214161051.32579-3-murphyp@linux.vnet.ibm.com> In-Reply-To: <20200214161051.32579-1-murphyp@linux.vnet.ibm.com> References: <20200214161051.32579-1-murphyp@linux.vnet.ibm.com> MIME-Version: 1.0 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)))