RE: [PATCH v2] config/arm: correct cpu arch for cross build

2023-11-20 Thread Joyce Kong
> -Original Message- > From: Thomas Monjalon > Sent: Sunday, November 12, 2023 8:54 PM > To: Ruifeng Wang ; Joyce Kong > > Cc: bruce.richard...@intel.com; dev@dpdk.org; nd > Subject: Re: [PATCH v2] config/arm: correct cpu arch for cross build > > 0

Re: [PATCH v2] config/arm: correct cpu arch for cross build

2023-11-12 Thread Thomas Monjalon
07/11/2023 04:26, Joyce Kong: > The cn10k cross build file sets cpu to 'armv8.6-a' while > it is armv8.5-a arch. > The cpu field in the cross file doesn't take effect as > config/arm/meson.build controls machine_args for march. > Then correct the value in arm cross files to 'auto'. > > Signed-off-

[PATCH v2] config/arm: correct cpu arch for cross build

2023-11-06 Thread Joyce Kong
The cn10k cross build file sets cpu to 'armv8.6-a' while it is armv8.5-a arch. The cpu field in the cross file doesn't take effect as config/arm/meson.build controls machine_args for march. Then correct the value in arm cross files to 'auto'. Signed-off-by: Joyce Kong Reviewed-by: Ruifeng Wang -