diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-02-10 03:06:39 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-02-10 03:06:39 +0000 |
commit | d06645d8eddce3a22144a9ef8961a8f7599d319e (patch) | |
tree | 526cac83ded3499b57032bb118ffbab0b72222d4 /toolchain/gcc | |
parent | 040f60b3ea53947675333e60e14838ddd9944abd (diff) | |
download | buildroot-novena-d06645d8eddce3a22144a9ef8961a8f7599d319e.tar.gz buildroot-novena-d06645d8eddce3a22144a9ef8961a8f7599d319e.zip |
There is no need to have a separate 'Makefile.in' file in the
general case, therefore, combine the toplevel Makefile options
such as setting TARGETS into the per-package *.mk file
Diffstat (limited to 'toolchain/gcc')
-rw-r--r-- | toolchain/gcc/Makefile.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/toolchain/gcc/Makefile.in b/toolchain/gcc/Makefile.in index e1fb6fec3..c89eb4227 100644 --- a/toolchain/gcc/Makefile.in +++ b/toolchain/gcc/Makefile.in @@ -1,3 +1,9 @@ +# gcc has a bunch of options that need to be shared with +# both gcc-uclibc-2.95.mk and gcc-uclibc-3.x.mk, and are +# use by other packages... So include them in this file +# and arrange to include it soon after invoking make from +# the top level. + GCC_VERSION:=$(strip $(subst ",, $(BR2_GCC_VERSION))) #" GCC_USE_SJLJ_EXCEPTIONS:=$(strip $(subst ",, $(BR2_GCC_USE_SJLJ_EXCEPTIONS))) |