From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerin Jacob Subject: Re: [PATCH v12 3/6] build: fix the meson build warning Date: Sun, 24 Jun 2018 16:35:28 +0530 Message-ID: <20180624110525.GA28587@jerin> References: <20180619013746.13268-1-gavin.hu@arm.com> <20180619103657.19186-1-gavin.hu@arm.com> <20180619103657.19186-4-gavin.hu@arm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev@dpdk.org, nd@arm.com, stable@dpdk.org To: Gavin Hu Return-path: Content-Disposition: inline In-Reply-To: <20180619103657.19186-4-gavin.hu@arm.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" -----Original Message----- > Date: Tue, 19 Jun 2018 18:36:54 +0800 > From: Gavin Hu > To: dev@dpdk.org > CC: nd@arm.com, gavin.hu@arm.com, stable@dpdk.org > Subject: [dpdk-dev] [PATCH v12 3/6] build: fix the meson build warning > X-Mailer: git-send-email 2.11.0 > > > This is to fix the unnecessary warning output, it is not consistent with > the configurations of other platforms. > > WARNING: Cross file does not specify strip binary, result will not be > stripped. > > Fixes: e53a5299d2 ("build: support vendor specific ARM cross builds") > Cc: stable@dpdk.org > > Signed-off-by: Gavin Hu > Reviewed-by: Phil Yang > Reviewed-by: Song Zhu > Acked-by: Bruce Richardson Acked-by: Jerin Jacob > --- > config/arm/arm64_thunderx_linuxapp_gcc | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/config/arm/arm64_thunderx_linuxapp_gcc b/config/arm/arm64_thunderx_linuxapp_gcc > index 7ff34af74..967d9d46d 100644 > --- a/config/arm/arm64_thunderx_linuxapp_gcc > +++ b/config/arm/arm64_thunderx_linuxapp_gcc > @@ -2,6 +2,7 @@ > c = 'aarch64-linux-gnu-gcc' > cpp = 'aarch64-linux-gnu-cpp' > ar = 'aarch64-linux-gnu-gcc-ar' > +strip = 'aarch64-linux-gnu-strip' > > [host_machine] > system = 'linux' > -- > 2.11.0 >