devtools: reduce ABI checks and static binaries
authorThomas Monjalon <thomas@monjalon.net>
Wed, 2 Dec 2020 16:47:03 +0000 (17:47 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 15 Jan 2021 16:29:51 +0000 (17:29 +0100)
commit6a426d733ec0d0d0d8edd6fb46da70a763a81194
tree05d02705f25ae7446572b18f0f191a739e4c661c
parent5b3ada04f7d57b6770d41ccff4a2485e5616bc52
devtools: reduce ABI checks and static binaries

When testing compilation and checking ABI compatibility,
there is no real need of static binaries eating disks.

The static linkage of applications was already well tested,
though the static examples tested with meson were limited to "l3fwd" only.
The static build test with make is limited to "helloworld" example.

The ABI compatibility is checked on shared libraries,
and there is no need to test again on similar builds.
A new parameter is added to the function "build",
so the ABI check is enabled only for native gcc and clang shared builds,
32-bit, generic armv8 and ppc cross compilations.
In other words, it is disabled for some static builds and some Arm ones.

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: David Marchand <david.marchand@redhat.com>
devtools/test-meson-builds.sh