build: use platform for generic and native builds
authorJuraj Linkeš <juraj.linkes@pantheon.tech>
Tue, 6 Jul 2021 09:44:28 +0000 (11:44 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 9 Jul 2021 12:50:54 +0000 (14:50 +0200)
commitbf66003b51ece4defb15d45c6c1cad812b994073
tree4fe79d5590dab845762f063f1b58f22e1b3d5992
parent5898abedeb847590ce3cf800e907c5035866e09b
build: use platform for generic and native builds

The current meson option 'machine' should only specify the ISA, which is
not sufficient for Arm, where setting ISA implies other settings as well
(and is used in Arm configuration as such).
Use the existing 'platform' meson option to differentiate the type of
the build (native/generic) and set ISA accordingly, unless the user
chooses to override it with a new option, 'cpu_instruction_set'.
The 'machine' option set the ISA in x86 builds and set native/default
'build type' in aarch64 builds. These two new variables, 'platform' and
'cpu_instruction_set', now properly set both ISA and build type for all
architectures in a uniform manner.
The 'machine' option also doesn't describe very well what it sets. The
new option, 'cpu_instruction_set', is much more descriptive. Keep
'machine' for backwards compatibility.

Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
config/arm/meson.build
config/meson.build
config/ppc/meson.build
devtools/test-meson-builds.sh
doc/guides/linux_gsg/build_dpdk.rst
meson_options.txt