diff options
author | DJ Delorie <dj@redhat.com> | 2003-10-08 21:29:04 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2003-10-08 21:29:04 +0000 |
commit | e9ea9dec2ce47789a3080d828ee7c9d02034ce71 (patch) | |
tree | 75a583b35d087a0e64e10d58930377574841ff92 /configure.in | |
parent | d1472f0ab5b87535cc9017e81f90a01ce970ddd7 (diff) | |
download | cygnal-e9ea9dec2ce47789a3080d828ee7c9d02034ce71.tar.gz cygnal-e9ea9dec2ce47789a3080d828ee7c9d02034ce71.tar.bz2 cygnal-e9ea9dec2ce47789a3080d828ee7c9d02034ce71.zip |
2003-10-05 Mohan Embar <gnustuff@thisiscool.com>
* configure.in: Allow explicit specification of CFLAGS_FOR_BUILD.
* configure: Rebuilt
* Makefile.tpl: Use CFLAGS_FOR_BUILD computed by configure
* Makefile.in: Rebuilt
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 3d30f62b7..1ab21a834 100644 --- a/configure.in +++ b/configure.in @@ -1919,6 +1919,10 @@ case " $target_configdirs " in ;; esac +# Allow the user to override the flags for +# our build compiler if desired. +CFLAGS_FOR_BUILD=${CFLAGS_FOR_BUILD-${CFLAGS}} + # On Canadian crosses, we'll be searching the right directories for # the previously-installed cross compiler, so don't bother to add # flags for directories within the install tree of the compiler @@ -2060,6 +2064,7 @@ NCN_STRICT_CHECK_TOOL(OBJDUMP, objdump) AC_SUBST(CC) AC_SUBST(CXX) AC_SUBST(CFLAGS) +AC_SUBST(CFLAGS_FOR_BUILD) AC_SUBST(CXXFLAGS) AC_SUBST(DEFAULT_YACC) AC_SUBST(DEFAULT_LEX) |