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

Makefile.arm64 638 B

12345678910111213141516171819202122232425
  1. ifeq ($(CORE), ARMV8)
  2. CCOMMON_OPT += -march=armv8-a
  3. FCOMMON_OPT += -march=armv8-a
  4. endif
  5. ifeq ($(CORE), CORTEXA57)
  6. CCOMMON_OPT += -march=armv8-a+crc+crypto+fp+simd -mtune=cortex-a57
  7. FCOMMON_OPT += -march=armv8-a+crc+crypto+fp+simd -mtune=cortex-a57
  8. endif
  9. ifeq ($(CORE), VULCAN)
  10. CCOMMON_OPT += -mtune=vulcan -mcpu=vulcan
  11. FCOMMON_OPT += -mtune=vulcan -mcpu=vulcan
  12. endif
  13. ifeq ($(CORE), THUNDERX)
  14. CCOMMON_OPT += -mtune=thunderx -mcpu=thunderx
  15. FCOMMON_OPT += -mtune=thunderx -mcpu=thunderx
  16. endif
  17. ifeq ($(CORE), THUNDERX2T99)
  18. CCOMMON_OPT += -mtune=thunderx2t99 -mcpu=thunderx2t99
  19. FCOMMON_OPT += -mtune=thunderx2t99 -mcpu=thunderx2t99
  20. endif