[lng-odp] [API-NEXT PATCHv2] linux-generic: Makefile: fix broken include path

2016-02-22 Thread Anders Roxell
Fix build error while building an application against ODP /media/data/src/install-odp-api-next/include/odp/api/cpu.h:20:26: fatal error: odp/cpu_arch.h: No such file or directory #include compilation terminated. Signed-off-by: Anders Roxell --- platform/linux-generic/Makefile.am

Re: [lng-odp] [API-NEXT PATCHv2] linux-generic: Makefile: fix broken include path

2016-02-22 Thread Christophe Milard
On 2016-02-23 00:42, Anders Roxell wrote: > Fix build error while building an application against ODP > /media/data/src/install-odp-api-next/include/odp/api/cpu.h:20:26: fatal > error: odp/cpu_arch.h: No such file or directory > #include > > compilation terminated. > > Signed-off-by: Anders Rox

Re: [lng-odp] [API-NEXT PATCHv2] linux-generic: Makefile: fix broken include path

2016-02-24 Thread Maxim Uvarov
Merged, with that change you probably need to change that naming: +#ifndef ODP_PLAT_CPU_ARCH_H_ +#define ODP_PLAT_CPU_ARCH_H_ to #ifndef ODP_API_CPU_ARCH_H_ or #ifndef ODP_API_PLAT_CPU_ARCH_H_ Maxim. On 02/23/16 11:48, Christophe Milard wrote: On 2016-02-23 00:42, Anders Roxell wrote: Fix