From patchwork Fri Feb 8 17:31:58 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Florian Weimer X-Patchwork-Id: 1038826 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-99877-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="rqgoxkia"; 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 43x2LL4nWbz9s4V for ; Sat, 9 Feb 2019 04:32:09 +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:cc:subject:date:message-id :mime-version:content-type; q=dns; s=default; b=bQJsLuOQn0MiXwvD mcyw5i7K7Ryx2IIxiuN80t64rj8Lsrrbr8djHT5vviNUAcMF0qZfhND85ODjYUf2 +FNBx4QWG3+hKCdkdOmD1SF83/MqkTFKQgMyaLyivXTPSYIKxs/SAHFGK4W3KbDM /M/o53Z83uRGy/DeeRobp1dnD/8= 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:cc:subject:date:message-id :mime-version:content-type; s=default; bh=Q8wZKUObKsLRDB3A/5uHzv fSup4=; b=rqgoxkiaVm48OGvZJos4hhhO5nwtybqDc1oTSNZo3WqSUogDYEeq0e 2gSJOwcTdPV538/cCC1V3DQrOqH2xDhDtL4d5hnRC/mDuFWxhvNDyq9gneeFjqEs UJSYUwwXUm6cEYS9yn2qouGYqsKL4GaUIx5x5bwcLMuf+OG21JxWQ= Received: (qmail 90055 invoked by alias); 8 Feb 2019 17:32:03 -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 89842 invoked by uid 89); 8 Feb 2019 17:32:03 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-16.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, SPF_HELO_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mx1.redhat.com From: Florian Weimer To: Joseph Myers Cc: libc-alpha@sourceware.org Subject: [PATCH] math: Enable sysdeps override Date: Fri, 08 Feb 2019 18:31:58 +0100 Message-ID: <87k1iajiep.fsf@oldenburg2.str.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux) MIME-Version: 1.0 Joseph, I think the patch below is needed. Is this how things are supposed to be done? Compile-tested with build-many-glibcs.py on ia64-linux-gnu. Thanks, Florian math: Enable sysdeps override sysdeps/ia64/fpu/bits/math-finite.h exists and will be installed on ia64, but during the build, the default math/bits/math-finite.h file is used, which is wrong. 2019-02-08 Florian Weimer math: Enable sysdeps override, as used on ia64. * math/bits/math-finite.h: Move to ... * sysdeps/generic/bits/math-finite.h: ... here. diff --git a/math/bits/math-finite.h b/sysdeps/generic/bits/math-finite.h similarity index 100% rename from math/bits/math-finite.h rename to sysdeps/generic/bits/math-finite.h