[dpdk-dev] [PATCH v3 07/15] net/nfp: build fix for musl libc

Alejandro Lucero alejandro.lucero at netronome.com
Thu Mar 21 10:48:24 CET 2019


On Wed, Mar 13, 2019 at 5:08 PM Natanael Copa <ncopa at alpinelinux.org> wrote:

> Fixes following build error on systems without execinfo.h:
>
> ../drivers/net/nfp/nfpcore/nfp_cpp_pcie_ops.c:19:10: fatal error:
> execinfo.h: No such file or directory
>  #include <execinfo.h>
>           ^~~~~~~~~~~~
>
> Signed-off-by: Natanael Copa <ncopa at alpinelinux.org>
>

Acked-by: Alejandro Lucero <alejandro.lucero at netronome.com>


> ---
>  drivers/net/nfp/nfpcore/nfp_cpp_pcie_ops.c | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/drivers/net/nfp/nfpcore/nfp_cpp_pcie_ops.c
> b/drivers/net/nfp/nfpcore/nfp_cpp_pcie_ops.c
> index 39bd48a83..93ee310f5 100644
> --- a/drivers/net/nfp/nfpcore/nfp_cpp_pcie_ops.c
> +++ b/drivers/net/nfp/nfpcore/nfp_cpp_pcie_ops.c
> @@ -16,7 +16,9 @@
>
>  #include <assert.h>
>  #include <stdio.h>
> +#if defined(RTE_BACKTRACE)
>  #include <execinfo.h>
> +#endif
>  #include <stdlib.h>
>  #include <unistd.h>
>  #include <stdint.h>
> --
> 2.21.0
>
>


More information about the dev mailing list