Re: [dpdk-dev] [PATCH 3/3] eal: remove references to execinfo.h for musl

2017-03-15 Thread Jan Blunck
>> ; david.march...@intel.com >> Subject: Re: [dpdk-dev] [PATCH 3/3] eal: remove references to execinfo.h for >> musl >> >> On Fri, Mar 10, 2017 at 1:40 PM, Thomas Monjalon >> wrote: >> > 2017-03-10 19:58, Wei Dai: >> >> @@ -

Re: [dpdk-dev] [PATCH 3/3] eal: remove references to execinfo.h for musl

2017-03-13 Thread Dai, Wei
> -Original Message- > From: jblu...@gmail.com [mailto:jblu...@gmail.com] On Behalf Of Jan Blunck > Sent: Friday, March 10, 2017 10:50 PM > To: Thomas Monjalon > Cc: Dai, Wei ; dev ; Mcnamara, John > ; david.march...@intel.com > Subject: Re: [dpdk-dev] [PATCH 3/3] e

Re: [dpdk-dev] [PATCH 3/3] eal: remove references to execinfo.h for musl

2017-03-10 Thread Jan Blunck
On Fri, Mar 10, 2017 at 1:40 PM, Thomas Monjalon wrote: > 2017-03-10 19:58, Wei Dai: >> @@ -47,6 +50,7 @@ >> /* dump the stack of the calling core */ >> void rte_dump_stack(void) >> { >> +#ifndef RTE_LIBC_MUSL >> void *func[BACKTRACE_SIZE]; >> char **symb = NULL; >> int size;

Re: [dpdk-dev] [PATCH 3/3] eal: remove references to execinfo.h for musl

2017-03-10 Thread Thomas Monjalon
2017-03-10 19:58, Wei Dai: > @@ -47,6 +50,7 @@ > /* dump the stack of the calling core */ > void rte_dump_stack(void) > { > +#ifndef RTE_LIBC_MUSL > void *func[BACKTRACE_SIZE]; > char **symb = NULL; > int size; > @@ -64,6 +68,7 @@ void rte_dump_stack(void) > } > >

[dpdk-dev] [PATCH 3/3] eal: remove references to execinfo.h for musl

2017-03-10 Thread Wei Dai
execinfo.h is not supported by musl now. need to remove references to execinfo.h to build DPDK with musl. musl is an implementation of the userspace portion of the standard library functionality described in the ISO C and POSIX standards, plus common extensions. Get more details about musl from h