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.zarch 363 B

12345678910111213141516
  1. ifeq ($(CORE), Z13)
  2. CCOMMON_OPT += -march=z13 -mzvector
  3. FCOMMON_OPT += -march=z13 -mzvector
  4. endif
  5. ifeq ($(CORE), Z14)
  6. CCOMMON_OPT += -march=z14 -mzvector -O3
  7. FCOMMON_OPT += -march=z14 -mzvector
  8. endif
  9. # Enable floating-point expression contraction for clang, since it is the
  10. # default for gcc
  11. ifeq ($(C_COMPILER), CLANG)
  12. CCOMMON_OPT += -ffp-contract=fast
  13. endif