Makefile 599 B

1234567891011
  1. # ==========================================================================
  2. # Build system
  3. # ==========================================================================
  4. # "Control how GCC aligns variables.
  5. # Supported values for type are compat uses increased alignment value
  6. # compatible uses GCC 4.8 and earlier, abi uses alignment value as specified by the psABI,
  7. # and cacheline uses increased alignment value to match the cache line size.
  8. # compat is the default."
  9. # "abi" seems to be somewhat successful in preventing oversealous data alignment.
  10. CFLAGS += $(call cc-option,-malign-data=abi,)