diff options
Diffstat (limited to 'mk')
-rw-r--r-- | mk/config.mk.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index 0a9f92b64d..035443a5fd 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -302,6 +302,17 @@ SupportsSplitObjs := $(strip \ SplitObjs=$(SupportsSplitObjs) # ---------------------------------------------------------------------------- +# Section splitting +# +# Similar to -ffunction-sections -fdata-sections in GCC. Provides space saving +# like SplitObjs, but doesn't require post-processing and splitting of object +# files. +# +# Set SplitSections=YES in your build.mk to enable. + +SplitSections=NO + +# ---------------------------------------------------------------------------- # There are a number of things which technically depend on GHC (e.g. if # ghc changes then Haskell files may be compiled differently, or Cabal |