diff options
author | Yann E. MORIN <yann.morin.1998@anciens.enib.fr> | 2011-05-22 00:05:40 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-05-22 10:04:27 +0200 |
commit | f5268b171a04e9fe286d88117d9590d7e68df754 (patch) | |
tree | c6f04f4db2d7b5d0d093f8b2da120f92a3138fa6 /toolchain/toolchain-crosstool-ng/Config.in | |
parent | a02cfbf1f4a82ee6582e2bf7622b2bf105359ea9 (diff) |
toolchain/crosstool-NG: bundle one CT-NG config file for each libc familly
Currently, the bundled CT-NG config file has no C library configured.
It is quite complex to add and/or munge options in this case.
Now, with one config file per libc familly, it becomes easier.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'toolchain/toolchain-crosstool-ng/Config.in')
-rw-r--r-- | toolchain/toolchain-crosstool-ng/Config.in | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/toolchain/toolchain-crosstool-ng/Config.in b/toolchain/toolchain-crosstool-ng/Config.in index 1a1041630..3cac8088a 100644 --- a/toolchain/toolchain-crosstool-ng/Config.in +++ b/toolchain/toolchain-crosstool-ng/Config.in @@ -38,12 +38,15 @@ config BR2_TOOLCHAIN_CTNG_LIBC config BR2_TOOLCHAIN_CTNG_CONFIG string "crosstool-NG configuration file to use" - default "toolchain/toolchain-crosstool-ng/crosstool-ng.config" + default "toolchain/toolchain-crosstool-ng/crosstool-ng.config-uClibc" if BR2_TOOLCHAIN_CTNG_uClibc + default "toolchain/toolchain-crosstool-ng/crosstool-ng.config-eglibc" if BR2_TOOLCHAIN_CTNG_eglibc + default "toolchain/toolchain-crosstool-ng/crosstool-ng.config-glibc" if BR2_TOOLCHAIN_CTNG_glibc help Enter here the crosstool-NG's .config file to use. - If unsure, use the default. - To finetune your toolchain, you can also call: - make ctng-menuconfig + To fine-tune your toolchain, you can also call: + make ctng-menuconfig + + If unsure, keep the default value. if BR2_TOOLCHAIN_CTNG_uClibc |