From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 5DA32A054D; Thu, 9 Jun 2022 03:44:30 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 44D7240689; Thu, 9 Jun 2022 03:44:30 +0200 (CEST) Received: from szxga02-in.huawei.com (szxga02-in.huawei.com [45.249.212.188]) by mails.dpdk.org (Postfix) with ESMTP id 831CC40220 for ; Thu, 9 Jun 2022 03:44:28 +0200 (CEST) Received: from dggpeml500024.china.huawei.com (unknown [172.30.72.54]) by szxga02-in.huawei.com (SkyGuard) with ESMTP id 4LJRgX6NSlzjXP0; Thu, 9 Jun 2022 09:43:04 +0800 (CST) Received: from [127.0.0.1] (10.67.100.224) by dggpeml500024.china.huawei.com (7.185.36.10) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.24; Thu, 9 Jun 2022 09:44:26 +0800 Subject: Re: [dpdk-dev] [PATCH v2] build: ccache support for cross build To: , , Jan Viktorin , Ruifeng Wang , Bruce Richardson , David Christensen , Stanislaw Kardach , Konstantin Ananyev CC: , , References: <20220602092356.2788089-1-jerinj@marvell.com> <20220608171304.945454-1-jerinj@marvell.com> From: fengchengwen Message-ID: <54dfdab9-e93f-cdcf-0296-bacaf500d2f2@huawei.com> Date: Thu, 9 Jun 2022 09:44:25 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.11.0 MIME-Version: 1.0 In-Reply-To: <20220608171304.945454-1-jerinj@marvell.com> Content-Type: text/plain; charset="utf-8" Content-Language: en-US Content-Transfer-Encoding: 7bit X-Originating-IP: [10.67.100.224] X-ClientProxiedBy: dggems703-chm.china.huawei.com (10.3.19.180) To dggpeml500024.china.huawei.com (7.185.36.10) X-CFilter-Loop: Reflected X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Test with: arm64_kunpeng920/930 and gcc-7/10, also with ccache or no, all pass Acked-by: Chengwen Feng On 2022/6/9 1:13, jerinj@marvell.com wrote: > From: Jerin Jacob > > By default, ccache is not used for cross build[1]. > Update all cross files to use ccache if it is available > in build machine. > > Also, updated devtools/test-meson-builds.sh > script to find the correct DPDK_TARGET due to > change in cross file syntax. > > [1] > https://mesonbuild.com/Machine-files.html > > Signed-off-by: Jerin Jacob > --- > > v2: > - Rebased with master, therefore added update riscv64 cross files > - Fixed DPDK_TARGET detection with devtools/test-meson-builds.sh > due to cross file synatx update. > > config/arm/arm32_armv8_linux_gcc | 4 ++-- > config/arm/arm64_armada_linux_gcc | 4 ++-- > config/arm/arm64_armv8_linux_clang_ubuntu | 4 ++-- > config/arm/arm64_armv8_linux_gcc | 4 ++-- > config/arm/arm64_bluefield_linux_gcc | 4 ++-- > config/arm/arm64_centriq2400_linux_gcc | 4 ++-- > config/arm/arm64_cn10k_linux_gcc | 4 ++-- > config/arm/arm64_cn9k_linux_gcc | 4 ++-- > config/arm/arm64_dpaa_linux_gcc | 4 ++-- > config/arm/arm64_emag_linux_gcc | 4 ++-- > config/arm/arm64_graviton2_linux_gcc | 4 ++-- > config/arm/arm64_kunpeng920_linux_gcc | 4 ++-- > config/arm/arm64_kunpeng930_linux_gcc | 4 ++-- [snip] >