Re: [dpdk-dev] [PATCH] mk: use extra cflags when linking apps with the compiler

2017-04-30 Thread Thomas Monjalon
25/04/2017 18:10, Gage Eads: > From: John Jacques > > When using the compiler to link applications, include EXTRA_CFLAGS. This > is needed, for example, when cross-compiling, to pass --sysroot. > GCC cross-compilers built with Yocto don't use the --with-sysroot option, > making it necessary to pa

[dpdk-dev] [PATCH] mk: use extra cflags when linking apps with the compiler

2017-04-25 Thread Gage Eads
From: John Jacques When using the compiler to link applications, include EXTRA_CFLAGS. This is needed, for example, when cross-compiling, to pass --sysroot. GCC cross-compilers built with Yocto don't use the --with-sysroot option, making it necessary to pass --sysroot command-line option. Signed