eal: move cpu flags out of headers
authorFerruh Yigit <ferruh.yigit@intel.com>
Thu, 28 Jan 2016 12:20:23 +0000 (12:20 +0000)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Fri, 29 Jan 2016 18:41:48 +0000 (19:41 +0100)
Move cpu_feature_table array from arch specific rte_cpuflags.h files to
new arch specific rte_cpuflags.c files.

Main motivation is to escape from static variable declarations in
header files. cpu_feature_table has many copies in final binary, even
exist in some object files that does not use this variable at all.

And this can be a sample to create architecture specific source files
and move some functions which are not performance sensitive from
architecture header files to source files.

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>

No differences found