diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-05-20 09:27:05 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-05-20 09:27:05 +0000 |
commit | 1f9c0c4fdb3c015906ca05ba70f2f6e5065d958d (patch) | |
tree | c8f4a9f050dbff3e76c496445cef07143a450287 | |
parent | f384c530adecc73135cc73619a714b366b635d0e (diff) | |
download | crosstool-ng-1f9c0c4fdb3c015906ca05ba70f2f6e5065d958d.tar.gz crosstool-ng-1f9c0c4fdb3c015906ca05ba70f2f6e5065d958d.tar.bz2 crosstool-ng-1f9c0c4fdb3c015906ca05ba70f2f6e5065d958d.zip |
Add gcc-4.2.0 (EXPERIMENTAL) and some patches vampirised from buildroot (302 rediffed against 4.2.0).
-rw-r--r-- | config/cc_core_gcc.in | 6 | ||||
-rw-r--r-- | config/cc_gcc.in | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/config/cc_core_gcc.in b/config/cc_core_gcc.in index 7719e83e..4bdbfb88 100644 --- a/config/cc_core_gcc.in +++ b/config/cc_core_gcc.in @@ -114,6 +114,11 @@ config CC_CORE_V_4_1_2 bool prompt "4.1.2" +config CC_CORE_V_4_2_0 + bool + prompt "4.2.0" + depends on EXPERIMENTAL + # CT_INSERT_VERSION_ABOVE # Don't remove above line! endchoice @@ -144,6 +149,7 @@ config CC_CORE_VERSION default "4.1.0" if CC_CORE_V_4_1_0 default "4.1.1" if CC_CORE_V_4_1_1 default "4.1.2" if CC_CORE_V_4_1_2 + default "4.2.0" if CC_CORE_V_4_2_0 # CT_INSERT_VERSION_STRING_ABOVE # Don't remove above line! diff --git a/config/cc_gcc.in b/config/cc_gcc.in index 2cad0bed..0cb474ab 100644 --- a/config/cc_gcc.in +++ b/config/cc_gcc.in @@ -114,6 +114,11 @@ config CC_V_4_1_2 bool prompt "4.1.2" +config CC_V_4_2_0 + bool + prompt "4.2.0" + depends on EXPERIMENTAL + # CT_INSERT_VERSION_ABOVE # Don't remove above line! endchoice @@ -144,6 +149,7 @@ config CC_VERSION default "4.1.0" if CC_V_4_1_0 default "4.1.1" if CC_V_4_1_1 default "4.1.2" if CC_V_4_1_2 + default "4.2.0" if CC_V_4_2_0 # CT_INSERT_VERSION_STRING_ABOVE # Don't remove above line! |