When building DPDK with musl, there is need to generate the MACRO named RTE_LIBC_MUSL in rte_config.h to remove some references to execinfo.h which is not supported by musl now.
Got more details about musl from http://www.musl-libc.org . Signed-off-by: Wei Dai <wei....@intel.com> --- config/common_linuxapp | 1 + 1 file changed, 1 insertion(+) diff --git a/config/common_linuxapp b/config/common_linuxapp index 00ebaac..66fb0a3 100644 --- a/config/common_linuxapp +++ b/config/common_linuxapp @@ -46,3 +46,4 @@ CONFIG_RTE_LIBRTE_PMD_TAP=y CONFIG_RTE_LIBRTE_NFP_PMD=y CONFIG_RTE_LIBRTE_POWER=y CONFIG_RTE_VIRTIO_USER=y +CONFIG_RTE_LIBC_MUSL=n -- 2.7.4