f75dd6d3b1
Through some mixup all cross-files for ARM and PowerPC platforms were
using C Preprocessor (cpp) instead of GCC (g++).
This caused meson to fail detecting the C++ compiler presence and
therefore disabling some targets (i.e. C++ include file checks).
Fixes: e53a5299d2
("build: support vendor specific ARM cross builds")
Cc: stable@dpdk.org
Signed-off-by: Stanislaw Kardach <kda@semihalf.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
17 lines
362 B
Plaintext
17 lines
362 B
Plaintext
[binaries]
|
|
c = ['ccache', 'arm-linux-gnueabihf-gcc']
|
|
cpp = ['ccache', 'arm-linux-gnueabihf-g++']
|
|
ar = 'arm-linux-gnueabihf-gcc-ar'
|
|
strip = 'arm-linux-gnueabihf-strip'
|
|
pkgconfig = 'arm-linux-gnueabihf-pkg-config'
|
|
pcap-config = ''
|
|
|
|
[host_machine]
|
|
system = 'linux'
|
|
cpu_family = 'aarch32'
|
|
cpu = 'armv8-a'
|
|
endian = 'little'
|
|
|
|
[properties]
|
|
platform = 'generic_aarch32'
|