[v1] config/arm: split aarch32 march
Checks
Commit Message
Aarch32 config got overlooked when splitting march in a previous parch.
Fixes: 95e0f23022a3 ("config/arm: split -march into arch and features")
Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>
---
config/arm/meson.build | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
Comments
> -----Original Message-----
> From: Juraj Linkeš <juraj.linkes@pantheon.tech>
> Sent: Friday, November 5, 2021 7:57 PM
> To: thomas@monjalon.net; david.marchand@redhat.com;
> bruce.richardson@intel.com; Honnappa Nagarahalli
> <Honnappa.Nagarahalli@arm.com>; Ruifeng Wang
> <Ruifeng.Wang@arm.com>; fengchengwen@huawei.com;
> ferruh.yigit@intel.com; jerinjacobk@gmail.com; jerinj@marvell.com;
> pbhagavatula@marvell.com
> Cc: dev@dpdk.org; Juraj Linkeš <juraj.linkes@pantheon.tech>
> Subject: [PATCH v1] config/arm: split aarch32 march
>
> Aarch32 config got overlooked when splitting march in a previous parch.
>
> Fixes: 95e0f23022a3 ("config/arm: split -march into arch and features")
> Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>
> ---
Acked-by: Ruifeng Wang <ruifeng.wang@arm.com>
It is not strictly -march only (-mfpu as well).
08/11/2021 06:33, Ruifeng Wang:
> From: Juraj Linkeš <juraj.linkes@pantheon.tech>
> >
> > Aarch32 config got overlooked when splitting march in a previous parch.
s/parch/patch/
> > Fixes: 95e0f23022a3 ("config/arm: split -march into arch and features")
blank line missing here
> > Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>
> > ---
> Acked-by: Ruifeng Wang <ruifeng.wang@arm.com>
Applied with rewording, thanks.
@@ -43,7 +43,8 @@ implementer_generic = {
'compiler_options': ['-moutline-atomics']
},
'generic_aarch32': {
- 'machine_args': ['-march=armv8-a', '-mfpu=neon'],
+ 'march': 'armv8-a',
+ 'compiler_options': ['-mfpu=neon'],
'flags': [
['RTE_ARCH_ARM_NEON_MEMCPY', false],
['RTE_ARCH_STRICT_ALIGN', true],