repo: https://github.com/buildroot/buildroot/tree/2021.05 commit: 69f79f2a2ee1417e19c1ead2c9226e11753c06cb Update for 2021.05 Change-Id: I77d6d14da04483c97cb172bf6732732012e538d9
23 lines
971 B
Makefile
23 lines
971 B
Makefile
################################################################################
|
|
#
|
|
# Architecture-specific definitions
|
|
#
|
|
################################################################################
|
|
|
|
# Allow GCC target configuration settings to be optionally
|
|
# overwritten by architecture specific makefiles.
|
|
|
|
# Makefiles must use the GCC_TARGET_* variables below instead
|
|
# of the BR2_GCC_TARGET_* versions.
|
|
GCC_TARGET_ARCH := $(call qstrip,$(BR2_GCC_TARGET_ARCH))
|
|
GCC_TARGET_ABI := $(call qstrip,$(BR2_GCC_TARGET_ABI))
|
|
GCC_TARGET_NAN := $(call qstrip,$(BR2_GCC_TARGET_NAN))
|
|
GCC_TARGET_FP32_MODE := $(call qstrip,$(BR2_GCC_TARGET_FP32_MODE))
|
|
GCC_TARGET_CPU := $(call qstrip,$(BR2_GCC_TARGET_CPU))
|
|
GCC_TARGET_FPU := $(call qstrip,$(BR2_GCC_TARGET_FPU))
|
|
GCC_TARGET_FLOAT_ABI := $(call qstrip,$(BR2_GCC_TARGET_FLOAT_ABI))
|
|
GCC_TARGET_MODE := $(call qstrip,$(BR2_GCC_TARGET_MODE))
|
|
|
|
# Include any architecture specific makefiles.
|
|
-include $(sort $(wildcard arch/arch.mk.*))
|