~mmach/netext73/busybox

« back to all changes in this revision

Viewing changes to arch/x86_64/Makefile

  • Committer: mmach
  • Date: 2022-08-22 15:28:31 UTC
  • Revision ID: netbit73@gmail.com-20220822152831-vrsxgw6c75b03ujx
1.35.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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.
 
11
CFLAGS += $(call cc-option,-malign-data=abi,)