From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-f68.google.com (mail-wr1-f68.google.com [209.85.221.68]) by dpdk.org (Postfix) with ESMTP id 22A095F1D; Mon, 14 Jan 2019 10:58:33 +0100 (CET) Received: by mail-wr1-f68.google.com with SMTP id c14so22154872wrr.0; Mon, 14 Jan 2019 01:58:33 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:message-id:subject:from:to:cc:date:in-reply-to :references:content-transfer-encoding:mime-version; bh=PmgwoP7pSBuQOv2yYB84EOUFaXoKPmAlZr3bFOqg/d8=; b=OY4DFuZCaTCHbRUXqf2VKUyEXq8Nh0JGpEcLldQyLVEgdE9h3t0+eClzlbfOlPn8sr kXfbJWkh+gMcltyCM32hpxcFW1UiNAgNxtqwVCw3Fh8IB4/xEcsxm2CQXXOtFTluZCsU KlJmRHYDu4apfyZfR+Q8sRYYkbo/nzRV3ZhEGgDjOgI+yJ8nkRORYhJW6VA9Sf2uFDCp FKBxYmNepkXMZ2QEetfMlYLAtN9IUKBHg/gKI6sUw0Z/MDIsP+evvyufhv/jYkZ/zD/u tHjqNRsiLW8bcmMP08KoNr9nc8wZ2xHa3WV6SlbrYLRfSAwdqDW8R9WljstocyAWhq1e APtA== X-Gm-Message-State: AJcUukfuFHoYXUR4FUhWYO6s3BV6ajKPBMmRidaWoV8QQlL3hhIureLD 6wYsPTUAT/D7Hs0d8yZ7fRSydKE0p2Q= X-Google-Smtp-Source: ALg8bN6nnJPNkdNB9vwB9dCqFFtRFBSgLFSy/Im5TFjEiU4gW25/sYHHwcOwmgWAsTNpxZsjjkYj0A== X-Received: by 2002:a5d:6b09:: with SMTP id v9mr24494151wrw.304.1547459912648; Mon, 14 Jan 2019 01:58:32 -0800 (PST) Received: from localhost ([2a01:4b00:f419:6f00:8361:8946:ba2b:d556]) by smtp.gmail.com with ESMTPSA id x186sm27439526wmg.41.2019.01.14.01.58.31 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 14 Jan 2019 01:58:31 -0800 (PST) Message-ID: <1547459910.4501.26.camel@debian.org> From: Luca Boccassi To: Jerin Jacob Kollanukkaran , "dev@dpdk.org" Cc: "gavin.hu@arm.com" , "stable@dpdk.org" , "viktorin@rehivetech.com" , "bruce.richardson@intel.com" Date: Mon, 14 Jan 2019 09:58:30 +0000 In-Reply-To: <1e16e55dacafcefe57861635a8a7c5d4729326fd.camel@marvell.com> References: <20181224125627.25690-1-bluca@debian.org> <20190107141130.24360-1-bluca@debian.org> <1547203539.4501.7.camel@debian.org> <1e16e55dacafcefe57861635a8a7c5d4729326fd.camel@marvell.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Mailer: Evolution 3.22.6-1+deb9u1 Mime-Version: 1.0 Subject: Re: [dpdk-dev] [EXT] Re: [PATCH v3] build: use generic march on arm64 when using 'default' machine X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jan 2019 09:58:33 -0000 On Mon, 2019-01-14 at 08:09 +0000, Jerin Jacob Kollanukkaran wrote: > On Fri, 2019-01-11 at 10:45 +0000, Luca Boccassi wrote: > > External Email > >=20 > > ------------------------------------------------------------------- > > --- > > On Mon, 2019-01-07 at 14:11 +0000, Luca Boccassi wrote: > > > When building for generic distribution we need a stable baseline > > > architecture, or depending on the build worker the result will > > > vary. > > >=20 > > > Force the default flags if the user explicitly sets > > > machine=3Ddefault > > > at configuration time. > > >=20 > > > Fixes: b1d48c41189a ("build: support ARM with meson") > > > Cc: stable@dpdk.org > > >=20 > > > Signed-off-by: Luca Boccassi > > > Acked-by: Bruce Richardson > > > --- > > > v2: fix typo in commit message, remove variable used only once > > > v3: put back temporary variable, as "machine" gets overwritten > > > =C2=A0=C2=A0=C2=A0=C2=A0by the function and loses the original value = before we need > > > =C2=A0=C2=A0=C2=A0=C2=A0it. > > >=20 > > > =C2=A0config/arm/meson.build | 7 ++++++- > > > =C2=A01 file changed, 6 insertions(+), 1 deletion(-) > > >=20 > > > diff --git a/config/arm/meson.build b/config/arm/meson.build > > > index dae55d6b2..614139534 100644 > > > --- a/config/arm/meson.build > > > +++ b/config/arm/meson.build > > > @@ -6,6 +6,7 @@ > > > =C2=A0march_opt =3D '-march=3D@0@'.format(machine) > > > =C2=A0 > > > =C2=A0arm_force_native_march =3D false > > > +arm_force_default_march =3D (machine =3D=3D 'default') > > > =C2=A0 > > > =C2=A0machine_args_generic =3D [ > > > =C2=A0 ['default', ['-march=3Darmv8-a+crc+crypto']], > > > @@ -105,7 +106,11 @@ else > > > =C2=A0 cmd_generic =3D ['generic', '', '', 'default', ''] > > > =C2=A0 cmd_output =3D cmd_generic # Set generic by default > > > =C2=A0 machine_args =3D [] # Clear previous machine args > > > - if not meson.is_cross_build() > > > + if arm_force_default_march and not > > > meson.is_cross_build() > > > + machine =3D impl_generic > > > + cmd_output =3D cmd_generic > > > + impl_pn =3D 'default' > > > + elif not meson.is_cross_build() > > > =C2=A0 # The script returns ['Implementer', 'Variant', > > > 'Architecture', > > > =C2=A0 # 'Primary Part number', 'Revision'] > > > =C2=A0 detect_vendor =3D find_program(join_paths( > >=20 > > Any chance for a quick review from the arm maintainers/devs? > > Thanks! >=20 > Looks good. >=20 > Could you please document the procedure to build generic image some > where in the DPDK documentation. >=20 > I guess the procedure will be same for x86 and arm64. Right? The "machine" meson option is already described in meson_options.txt, is that enough? --=20 Kind regards, Luca Boccassi