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