arch.mk 971 B

12345678910111213141516171819202122
  1. ################################################################################
  2. #
  3. # Architecture-specific definitions
  4. #
  5. ################################################################################
  6. # Allow GCC target configuration settings to be optionally
  7. # overwritten by architecture specific makefiles.
  8. # Makefiles must use the GCC_TARGET_* variables below instead
  9. # of the BR2_GCC_TARGET_* versions.
  10. GCC_TARGET_ARCH := $(call qstrip,$(BR2_GCC_TARGET_ARCH))
  11. GCC_TARGET_ABI := $(call qstrip,$(BR2_GCC_TARGET_ABI))
  12. GCC_TARGET_NAN := $(call qstrip,$(BR2_GCC_TARGET_NAN))
  13. GCC_TARGET_FP32_MODE := $(call qstrip,$(BR2_GCC_TARGET_FP32_MODE))
  14. GCC_TARGET_CPU := $(call qstrip,$(BR2_GCC_TARGET_CPU))
  15. GCC_TARGET_FPU := $(call qstrip,$(BR2_GCC_TARGET_FPU))
  16. GCC_TARGET_FLOAT_ABI := $(call qstrip,$(BR2_GCC_TARGET_FLOAT_ABI))
  17. GCC_TARGET_MODE := $(call qstrip,$(BR2_GCC_TARGET_MODE))
  18. # Include any architecture specific makefiles.
  19. -include $(sort $(wildcard arch/arch.mk.*))