You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 530B

12345678910111213141516171819202122
  1. # ARM64-specific directories containing source files
  2. #
  3. SRCDIRS += arch/arm64/core
  4. # ARM64-specific flags
  5. #
  6. CFLAGS += -mabi=lp64 -mlittle-endian -mcmodel=small
  7. CFLAGS += -fomit-frame-pointer
  8. ASFLAGS += -mabi=lp64 -EL
  9. # EFI requires -fshort-wchar, and nothing else currently uses wchar_t
  10. #
  11. CFLAGS += -fshort-wchar
  12. # Include common ARM Makefile
  13. MAKEDEPS += arch/arm/Makefile
  14. include arch/arm/Makefile
  15. # Include platform-specific Makefile
  16. #
  17. MAKEDEPS += arch/arm64/Makefile.$(PLATFORM)
  18. include arch/arm64/Makefile.$(PLATFORM)