diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-06-08 23:26:54 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-06-08 23:26:54 +0200 |
commit | 43ca5b409558d6eea50c99384b76980ebaf5f52d (patch) | |
tree | d5342640753c04d7accf98e64f6f716797857767 /config/cc.in | |
parent | 3c351b899d32c80ab70675b6f6f99f792c72541c (diff) | |
download | crosstool-ng-43ca5b409558d6eea50c99384b76980ebaf5f52d.tar.gz crosstool-ng-43ca5b409558d6eea50c99384b76980ebaf5f52d.tar.bz2 crosstool-ng-43ca5b409558d6eea50c99384b76980ebaf5f52d.zip |
config: add support for a second part of the generated choices
Some components have configuration options that can depend on
generic options, so they should go below those.
uClibc for example:
- has its own options (wchar...)
- uses the generic options (threads...)
- if linuxthreads chosen, offers two impls
So we need to be able to split the components options in 2,
one part that is above the generic options, and one part that
ends up below the generic options.
Diffstat (limited to 'config/cc.in')
-rw-r--r-- | config/cc.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/cc.in b/config/cc.in index 8869f03c..4afa2785 100644 --- a/config/cc.in +++ b/config/cc.in @@ -115,4 +115,6 @@ config CC_LANG_OTHERS endif # ! BARE_METAL +source "config.gen/cc.in.2" + endmenu |