diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-04-28 03:53:52 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-04-28 03:53:52 +0000 |
commit | 8a5d57bbb2aacabb29f6ac031cc4263a0f5404cf (patch) | |
tree | fe8e5e5d7cad96f6b7a0d39a331fbb326a1c7e67 /toolchain/gcc/Config.in | |
parent | 719bb81a16ea34600664900b2d3fc63df5cc10d0 (diff) | |
download | buildroot-novena-8a5d57bbb2aacabb29f6ac031cc4263a0f5404cf.tar.gz buildroot-novena-8a5d57bbb2aacabb29f6ac031cc4263a0f5404cf.zip |
Add support for soon to be released binutils-2.16 as well as
GCC-4.1.0. These tool versions are needed so that NPTL support
can be added into uClibc. Backporting NPTL from GCC-4.1.0 into
GCC-4.0 may be possible, but not recommended.
Diffstat (limited to 'toolchain/gcc/Config.in')
-rw-r--r-- | toolchain/gcc/Config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/toolchain/gcc/Config.in b/toolchain/gcc/Config.in index 3bce26efd..673337f17 100644 --- a/toolchain/gcc/Config.in +++ b/toolchain/gcc/Config.in @@ -35,6 +35,9 @@ choice config BR2_GCC_VERSION_3_4_3 bool "gcc 3.4.3" + config BR2_GCC_VERSION_4_1_0 + bool "gcc 4.1.0" + endchoice config BR2_GCC_VERSION @@ -47,6 +50,7 @@ config BR2_GCC_VERSION default "3.4.1" if BR2_GCC_VERSION_3_4_1 default "3.4.2" if BR2_GCC_VERSION_3_4_2 default "3.4.3" if BR2_GCC_VERSION_3_4_3 + default "4.1.0" if BR2_GCC_VERSION_4_1_0 config BR2_GCC_USE_SJLJ_EXCEPTIONS |