diff options
author | midipix <writeonce@midipix.org> | 2015-03-15 20:46:36 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2015-03-15 20:46:36 -0400 |
commit | 607827292053aa25d0f0300add0798dd085a9131 (patch) | |
tree | e73ffbc6e610091dcc7dc9a5f0379f996d98025c /Makefile.tpl | |
parent | 4cdf4f4f006da014238394af84268dad91f6a79d (diff) | |
download | cbb-gcc-4.6.4-607827292053aa25d0f0300add0798dd085a9131.tar.bz2 cbb-gcc-4.6.4-607827292053aa25d0f0300add0798dd085a9131.tar.xz |
compiler building blocks: add support for custom build variables.
feature detection: set a fallback value of 'yes' to modern assembler
presence, PE dward support, libc-provided stack protector, and
dynamic-loader header iteration.
signed-off by Z. Gilboa; see copying.midipix (9cd0746c) for additional information.
Diffstat (limited to 'Makefile.tpl')
-rw-r--r-- | Makefile.tpl | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/Makefile.tpl b/Makefile.tpl index 7ad089616..cec01e053 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -93,6 +93,21 @@ MAINT = @MAINT@ MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ +# ---------------------------------- +# Compiler Building Blocks variables +# ---------------------------------- +cbb_xgcc_for_specs = @cbb_xgcc_for_specs@ +cbb_ldflags_for_target = @cbb_ldflags_for_target@ +cbb_sysroot_for_libgcc = @cbb_sysroot_for_libgcc@ + +cbb_cflags_for_stage1 = @cbb_cflags_for_stage1@ +cbb_cflags_for_stage2 = @cbb_cflags_for_stage2@ +cbb_cflags_for_stage3 = @cbb_cflags_for_stage3@ +cbb_cflags_for_stage4 = @cbb_cflags_for_stage4@ + +cbb_cflags_for_stageprofile = @cbb_cflags_for_stageprofile@ +cbb_cflags_for_stagefeedback = @cbb_cflags_for_stagefeedback@ + # ------------------------------------------------- # Miscellaneous non-standard autoconf-set variables # ------------------------------------------------- @@ -145,7 +160,10 @@ BASE_EXPORTS = \ M4="$(M4)"; export M4; \ SED="$(SED)"; export SED; \ AWK="$(AWK)"; export AWK; \ - MAKEINFO="$(MAKEINFO)"; export MAKEINFO; + MAKEINFO="$(MAKEINFO)"; export MAKEINFO; \ + cbb_xgcc_for_specs="$(cbb_xgcc_for_specs)"; export cbb_xgcc_for_specs; \ + cbb_ldflags_for_target="$(cbb_ldflags_for_target)" ; export cbb_ldflags_for_target; \ + cbb_sysroot_for_libgcc="$(cbb_sysroot_for_libgcc)" ; export cbb_sysroot_for_libgcc; # This is the list of variables to export in the environment when # configuring subdirectories for the build system. @@ -421,7 +439,7 @@ STAGE_CONFIGURE_FLAGS=@stage2_werror_flag@ [+ FOR bootstrap-stage +] # Defaults for stage [+id+]; some are overridden below. -STAGE[+id+]_CFLAGS = $(STAGE_CFLAGS) +STAGE[+id+]_CFLAGS = $(STAGE_CFLAGS) $(cbb_cflags_for_stage[+id+]) STAGE[+id+]_CXXFLAGS = $(CXXFLAGS) @if target-libstdc++-v3-bootstrap # Override the above if we're bootstrapping C++. @@ -437,7 +455,7 @@ STAGE[+id+]_CONFIGURE_FLAGS = $(STAGE_CONFIGURE_FLAGS) # MAKEINFO and MAKEINFOFLAGS are explicitly passed here to make them # overrideable (for a bootstrap build stage1 also builds gcc.info). -STAGE1_CFLAGS = @stage1_cflags@ +STAGE1_CFLAGS = @stage1_cflags@ $(cbb_cflags_for_stage1) STAGE1_CHECKING = @stage1_checking@ STAGE1_LANGUAGES = @stage1_languages@ # * We force-disable intermodule optimizations, even if |