From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 508E8C001E0 for ; Sun, 13 Aug 2023 09:16:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229737AbjHMJQb (ORCPT ); Sun, 13 Aug 2023 05:16:31 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44692 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229441AbjHMJQa (ORCPT ); Sun, 13 Aug 2023 05:16:30 -0400 Received: from 1wt.eu (ded1.1wt.eu [163.172.96.212]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 38DC0BE; Sun, 13 Aug 2023 02:16:31 -0700 (PDT) Received: (from willy@localhost) by pcw.home.local (8.15.2/8.15.2/Submit) id 37D9GPeh008678; Sun, 13 Aug 2023 11:16:25 +0200 Date: Sun, 13 Aug 2023 11:16:25 +0200 From: Willy Tarreau To: Zhangjin Wu Cc: linux-kernel@vger.kernel.org, linux-kselftest@vger.kernel.org, tanyuan@tinylab.org, thomas@t-8ch.de Subject: Re: [PATCH v2 5/7] selftests/nolibc: customize CROSS_COMPILE for all architectures Message-ID: <20230813091625.GG8237@1wt.eu> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, Aug 12, 2023 at 04:32:41AM +0800, Zhangjin Wu wrote: > +CROSS_COMPILE_i386 ?= x86_64-linux- > +CROSS_COMPILE_x86_64 ?= x86_64-linux- > +CROSS_COMPILE_x86 ?= x86_64-linux- > +CROSS_COMPILE_arm64 ?= aarch64-linux- > +CROSS_COMPILE_arm ?= arm-linux-gnueabi- > +CROSS_COMPILE_mips ?= mips64-linux- Given that we don't support mips64, I'd suggest to ust mips-linux- instead here for now. That doesn't seem right to ask users to download a toolchain for a different architecture than the one supported just because we can adapt to it. Willy