config.mk 630 B

123456789101112131415161718
  1. #
  2. # (C) Copyright 2002
  3. # Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
  4. #
  5. # SPDX-License-Identifier: GPL-2.0+
  6. #
  7. PLATFORM_RELFLAGS += -fno-common -ffixed-r8 -msoft-float
  8. # Make ARMv5 to allow more compilers to work, even though its v6.
  9. PLATFORM_CPPFLAGS += -march=armv5t
  10. # =========================================================================
  11. #
  12. # Supply options according to compiler version
  13. #
  14. # =========================================================================
  15. PF_RELFLAGS_SLB_AT := $(call cc-option,-mshort-load-bytes,\
  16. $(call cc-option,-malignment-traps,))
  17. PLATFORM_RELFLAGS += $(PF_RELFLAGS_SLB_AT)