Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
arm64/toolchain: Cmake alignment makefile writing
They should be a relationship of choice: ifeq ($(CONFIG_ARCH_CORTEX_A53),y) ARCHCPUFLAGS += -mcpu=cortex-a53 else ifeq ($(CONFIG_ARCH_CORTEX_A55),y) ARCHCPUFLAGS += -mcpu=cortex-a55 else ifeq ($(CONFIG_ARCH_CORTEX_A57),y) ARCHCPUFLAGS += -mcpu=cortex-a57 else ifeq ($(CONFIG_ARCH_CORTEX_A72),y) ARCHCPUFLAGS += -mcpu=cortex-a72 else ifeq ($(CONFIG_ARCH_CORTEX_R82),y) ARCHCPUFLAGS += -mcpu=cortex-r82 else ifeq ($(CONFIG_ARCH_ARMV8A),y) ARCHCPUFLAGS += -march=armv8-a else ifeq ($(CONFIG_ARCH_ARMV8R),y) ARCHCPUFLAGS += -march=armv8-r endif Signed-off-by: wangmingrong1 <[email protected]>
- Loading branch information