3ce6474b22
pcap has historically shipped a custom pcap-config binary tool which does the job of pkg-config. It was never compatible with cross compilation. Meson uses it when using dependency(), which then means cross compilation fails. Set pcap-config to empty in the meson cross compilation files so that Meson will not use it, and add a fallback in case dependency() fails. libpcap 1.9.0 finally ships a pkg-config file so everything will work out of the box in the future. Signed-off-by: Luca Boccassi <luca.boccassi@microsoft.com>
16 lines
280 B
Plaintext
16 lines
280 B
Plaintext
[binaries]
|
|
c = 'aarch64-linux-gnu-gcc'
|
|
cpp = 'aarch64-linux-gnu-cpp'
|
|
ar = 'aarch64-linux-gnu-gcc-ar'
|
|
strip = 'aarch64-linux-gnu-strip'
|
|
pcap-config = ''
|
|
|
|
[host_machine]
|
|
system = 'linux'
|
|
cpu_family = 'aarch64'
|
|
cpu = 'armv8-a'
|
|
endian = 'little'
|
|
|
|
[properties]
|
|
implementor_id = '0x43'
|