diff options
author | Jasmin Jessich <jasmin@anw.at> | 2015-08-29 12:43:43 +0200 |
---|---|---|
committer | Jasmin Jessich <jasmin@anw.at> | 2015-09-03 23:13:18 +0200 |
commit | dd5bc63afa7deeb1fe8e168ff1566e7bb0b92c81 (patch) | |
tree | c7fad40fdc1c1c586298411b07c8d0af4a216b6b /config/cc | |
parent | 74b09f9c4a07a8f561001f4a727259b2d5eced77 (diff) | |
download | crosstool-ng-dd5bc63afa7deeb1fe8e168ff1566e7bb0b92c81.tar.gz crosstool-ng-dd5bc63afa7deeb1fe8e168ff1566e7bb0b92c81.tar.bz2 crosstool-ng-dd5bc63afa7deeb1fe8e168ff1566e7bb0b92c81.zip |
CC_GCC_CUSTOM is no longer part of the gcc version choice, but an independend
configuration to enable CC_GCC_CUSTOM_LOCATION.
Signed-off-by: Jasmin Jessich <jasmin@anw.at>
Diffstat (limited to 'config/cc')
-rw-r--r-- | config/cc/gcc.in | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/config/cc/gcc.in b/config/cc/gcc.in index 835b7e22..0b65a428 100644 --- a/config/cc/gcc.in +++ b/config/cc/gcc.in @@ -300,13 +300,15 @@ config CC_GCC_V_3_4_6 prompt "3.4.6 (OBSOLETE)" depends on OBSOLETE +endchoice + config CC_GCC_CUSTOM bool prompt "Custom gcc" depends on EXPERIMENTAL - select CC_GCC_latest - -endchoice + help + The choosen compiler version shall be not downloaded. Instead use + a custom location to get the source. if CC_GCC_CUSTOM @@ -616,7 +618,6 @@ config CC_GCC_VERSION default "4.1.2" if CC_GCC_V_4_1_2 default "4.0.4" if CC_GCC_V_4_0_4 default "3.4.6" if CC_GCC_V_3_4_6 - default "custom" if CC_GCC_CUSTOM config CC_LANG_JAVA_USE_ECJ bool |