diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2005-04-30 21:57:58 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2005-04-30 21:57:58 +0000 |
commit | 79a40a34377ebabbb6fba4b9e1ac70ce85d0d12e (patch) | |
tree | 7a15002f2d4e461a3b528833fa39a9a1e2287e17 /toolchain/gcc | |
parent | bea1c36aa284ef970fe65d27858251c871af59cc (diff) | |
download | buildroot-novena-79a40a34377ebabbb6fba4b9e1ac70ce85d0d12e.tar.gz buildroot-novena-79a40a34377ebabbb6fba4b9e1ac70ce85d0d12e.zip |
Add gcc 4.0.0 support. Note... I haven't needed the sjlj exception support in some time, but haven't touched the default in this commit.
Diffstat (limited to 'toolchain/gcc')
-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 673337f17..ce0a5ab50 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_0_0 + bool "gcc 4.0.0" + config BR2_GCC_VERSION_4_1_0 bool "gcc 4.1.0" @@ -50,6 +53,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.0.0" if BR2_GCC_VERSION_4_0_0 default "4.1.0" if BR2_GCC_VERSION_4_1_0 |