mk: restrict CPU flags list
authorThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 21 Mar 2016 20:12:55 +0000 (21:12 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 22 Mar 2016 19:18:33 +0000 (20:18 +0100)
commit8744d7a9450edde63769a5e46dd1aadd202007d1
tree91b819cd9e237ecfbe8effd815eea268aafe8e02
parent1604ce1e60ac1bac46e323e8bd277e5117e4013a
mk: restrict CPU flags list

When compiling each file, the CPU flags are given as RTE_MACHINE_CPUFLAG_*
and in the list RTE_COMPILE_TIME_CPUFLAGS.

RTE_MACHINE_CPUFLAG_* are used to check the CPU features when compiling.

The list RTE_COMPILE_TIME_CPUFLAGS is used only to check the CPU at
runtime in the function rte_cpu_check_supported(). So it is not needed to
define this list for every files.
That's why RTE_COMPILE_TIME_CPUFLAGS is removed from the common variable
MACHINE_CFLAGS and is added only to the CFLAGS of eal_common_cpuflags.c.

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
lib/librte_eal/bsdapp/eal/Makefile
lib/librte_eal/linuxapp/eal/Makefile
mk/rte.cpuflags.mk