DPDK patches and discussions
 help / color / mirror / Atom feed
From: Bruce Richardson <bruce.richardson@intel.com>
To: Leyi Rong <leyi.rong@intel.com>
Cc: qi.z.zhang@intel.com, ferruh.yigit@intel.com, dev@dpdk.org
Subject: Re: [dpdk-dev] [PATCH 1/2] net/ice: fix build error on lower version GCC
Date: Tue, 3 Nov 2020 13:28:04 +0000	[thread overview]
Message-ID: <20201103132804.GC1144@bricha3-MOBL.ger.corp.intel.com> (raw)
In-Reply-To: <20201103125629.56030-2-leyi.rong@intel.com>

On Tue, Nov 03, 2020 at 08:56:28PM +0800, Leyi Rong wrote:
> Fix the build error when -march=skylake-avx512 is not supported on
> lower version GCC.
> 
> Fixes: ef5d52dae5e2 ("net/ice: add AVX512 vector path")
> 
> Signed-off-by: Leyi Rong <leyi.rong@intel.com>
> ---
>  drivers/net/ice/meson.build | 21 +++++++++++++++------
>  1 file changed, 15 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/net/ice/meson.build b/drivers/net/ice/meson.build
> index 7d54a49236..ec8933aa1a 100644
> --- a/drivers/net/ice/meson.build
> +++ b/drivers/net/ice/meson.build
> @@ -46,12 +46,21 @@ if arch_subdir == 'x86'
>  
>  	if ice_avx512_cpu_support == true or ice_avx512_cc_support == true
>  		cflags += ['-DCC_AVX512_SUPPORT']
> -		ice_avx512_lib = static_library('ice_avx512_lib',
> -				      'ice_rxtx_vec_avx512.c',
> -				      dependencies: [static_rte_ethdev,
> -					static_rte_kvargs, static_rte_hash],
> -				      include_directories: includes,
> -				      c_args: [cflags, '-march=skylake-avx512', '-mavx512f', '-mavx512bw'])
> +		if cc.has_argument('-march=skylake-avx512')
> +			ice_avx512_lib = static_library('ice_avx512_lib',
> +					      'ice_rxtx_vec_avx512.c',
> +					      dependencies: [static_rte_ethdev,
> +						static_rte_kvargs, static_rte_hash],
> +					      include_directories: includes,
> +					      c_args: [cflags, '-march=skylake-avx512', '-mavx512f', '-mavx512bw'])
> +		else
> +			ice_avx512_lib = static_library('ice_avx512_lib',
> +					      'ice_rxtx_vec_avx512.c',
> +					      dependencies: [static_rte_ethdev,
> +						static_rte_kvargs, static_rte_hash],
> +					      include_directories: includes,
> +					      c_args: [cflags, '-mavx512f', '-mavx512bw'])
> +		endif

Rather than duplicating the whole static_library call, you can just do:
	avx512_cflags = [cflags, '-mavx512f', '-mavx512bw']
	if cc.has_argument('-march=skylake-avx512')
		avx512_cflags += '-march=skylake-avx512'
	endif

and then use avx512_cflags inside a single static_library call. Much
shorter code.

/Bruce

>  		objs += ice_avx512_lib.extract_objects('ice_rxtx_vec_avx512.c')
>  	endif
>  endif
> -- 
> 2.17.1
> 

  reply	other threads:[~2020-11-03 13:28 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-03 12:56 [dpdk-dev] [PATCH 0/2] " Leyi Rong
2020-11-03 12:56 ` [dpdk-dev] [PATCH 1/2] net/ice: " Leyi Rong
2020-11-03 13:28   ` Bruce Richardson [this message]
2020-11-03 14:13     ` Rong, Leyi
2020-11-03 12:56 ` [dpdk-dev] [PATCH 2/2] net/iavf: " Leyi Rong
2020-11-03 13:51 ` [dpdk-dev] [PATCH v2 0/2] " Leyi Rong
2020-11-03 13:51   ` [dpdk-dev] [PATCH v2 1/2] net/ice: " Leyi Rong
2020-11-03 14:42     ` Bruce Richardson
2020-11-03 15:29       ` Ferruh Yigit
2020-11-03 15:37         ` Ferruh Yigit
2020-11-03 15:42           ` Ali Alnubani
2020-11-03 15:57             ` Ferruh Yigit
2020-11-03 13:52   ` [dpdk-dev] [PATCH v2 2/2] net/iavf: " Leyi Rong
2020-11-03 14:44     ` Bruce Richardson
2020-11-03 15:28       ` Ferruh Yigit

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20201103132804.GC1144@bricha3-MOBL.ger.corp.intel.com \
    --to=bruce.richardson@intel.com \
    --cc=dev@dpdk.org \
    --cc=ferruh.yigit@intel.com \
    --cc=leyi.rong@intel.com \
    --cc=qi.z.zhang@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).