From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qk1-x744.google.com (mail-qk1-x744.google.com [IPv6:2607:f8b0:4864:20::744]) by sourceware.org (Postfix) with ESMTPS id DA2D7385803F for ; Fri, 27 Nov 2020 12:57:54 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org DA2D7385803F Received: by mail-qk1-x744.google.com with SMTP id 1so2873118qka.0 for ; Fri, 27 Nov 2020 04:57:54 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id:mime-version :content-transfer-encoding; bh=i/VX8rn3MhvuPZLL83k8rM/GOxezTWFZr1Lszu2pMNQ=; b=Bx6coo/Ns+PPYox0EewhPgGCmMViMWj7Bk5kbOwJdrCDLljHc4P06aqlf/Q8dRho1K Hfb9IUssNuIzndLYFnpzFWwjOduHNNpee6PxyVJ2W44Y7ex0F7RqQmHwDMtuj23DDkvf IAuSrAK4onBx7hrvoFJt5vky9PJSrKSGG0LgQ8NfWOKra6fngmcDSL5SFbovMAlG2Grc cvME7+OEJ08S16zpiJbMjL0WP5/3vYvYRWvi//6gdzsdf32syJueU1j2R9pg6B9Aawq3 pS6nk+Q+45CFtQvyv1AWvxNPMOdipRt45RxYA9y2Zo3P07gOyiU9vzxZg15wUypa9Pjc nDHw== X-Gm-Message-State: AOAM531anQ6tUS5g7NiYREgjXDVZRW1JqUZJ6jZrQMpI/cpuBXv1GjH0 /twj/wm70FK5I1SXqYuZx/PMwNAoAzg/Og== X-Google-Smtp-Source: ABdhPJw12ZicTMakl+BUSkKztv/L1z9ujc7wsRQLIihXDKv7QjPXTTaCDAlR2a7nxyRzhSMjuk9sKQ== X-Received: by 2002:a37:a481:: with SMTP id n123mr8685829qke.114.1606481874319; Fri, 27 Nov 2020 04:57:54 -0800 (PST) Received: from localhost.localdomain ([177.194.48.209]) by smtp.googlemail.com with ESMTPSA id i84sm5841619qke.33.2020.11.27.04.57.53 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 27 Nov 2020 04:57:53 -0800 (PST) From: Adhemerval Zanella To: libc-stable@sourceware.org Subject: [2.32 COMMITTED] sh: Add sh4 fpu Implies folder Date: Fri, 27 Nov 2020 09:57:50 -0300 Message-Id: <20201127125750.1175793-1-adhemerval.zanella@linaro.org> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-13.8 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-stable@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-stable mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Nov 2020 12:57:56 -0000 The commit 605f38177db (sh: Split BE/LE abilist) did not take in consideration the SH4 fpu support. Checked with a build for sh4-linux-gnu and manually checked that the implementations at sysdeps/sh/sh4/fpu/ are selected. John Paul Adrian Glaubitz also confirmed it fixes the build issues he encontered. (cherry-picked from 9ff2674ef82eccd5ae5dfa6bb733c0e3613764c6) --- NEWS | 1 + sysdeps/sh/be/sh4/fpu/Implies | 1 + sysdeps/sh/le/sh4/fpu/Implies | 1 + sysdeps/unix/sysv/linux/sh/be/sh4/fpu/Implies | 1 + sysdeps/unix/sysv/linux/sh/le/sh4/fpu/Implies | 1 + 5 files changed, 5 insertions(+) create mode 100644 sysdeps/sh/be/sh4/fpu/Implies create mode 100644 sysdeps/sh/le/sh4/fpu/Implies create mode 100644 sysdeps/unix/sysv/linux/sh/be/sh4/fpu/Implies create mode 100644 sysdeps/unix/sysv/linux/sh/le/sh4/fpu/Implies diff --git a/NEWS b/NEWS index 1c1f270784..8b18675683 100644 --- a/NEWS +++ b/NEWS @@ -17,6 +17,7 @@ The following bugs are resolved with this release: by the caller to the kernel [26639] libc: msgctl IPC_INFO and MSG_INFO return garbage [26853] aarch64: Missing unwind information in statically linked startup code + [26932] libc: sh: Multiple floating point functions defined as stubs only Version 2.32 diff --git a/sysdeps/sh/be/sh4/fpu/Implies b/sysdeps/sh/be/sh4/fpu/Implies new file mode 100644 index 0000000000..71b28ee1a4 --- /dev/null +++ b/sysdeps/sh/be/sh4/fpu/Implies @@ -0,0 +1 @@ +sh/sh4/fpu diff --git a/sysdeps/sh/le/sh4/fpu/Implies b/sysdeps/sh/le/sh4/fpu/Implies new file mode 100644 index 0000000000..71b28ee1a4 --- /dev/null +++ b/sysdeps/sh/le/sh4/fpu/Implies @@ -0,0 +1 @@ +sh/sh4/fpu diff --git a/sysdeps/unix/sysv/linux/sh/be/sh4/fpu/Implies b/sysdeps/unix/sysv/linux/sh/be/sh4/fpu/Implies new file mode 100644 index 0000000000..7eeaf15a5a --- /dev/null +++ b/sysdeps/unix/sysv/linux/sh/be/sh4/fpu/Implies @@ -0,0 +1 @@ +unix/sysv/linux/sh/sh4/fpu diff --git a/sysdeps/unix/sysv/linux/sh/le/sh4/fpu/Implies b/sysdeps/unix/sysv/linux/sh/le/sh4/fpu/Implies new file mode 100644 index 0000000000..7eeaf15a5a --- /dev/null +++ b/sysdeps/unix/sysv/linux/sh/le/sh4/fpu/Implies @@ -0,0 +1 @@ +unix/sysv/linux/sh/sh4/fpu -- 2.25.1