diff options
author | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-10-30 00:30:47 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-10-30 00:30:47 +0100 |
commit | 8bcd5c689cba82ae6695b77b81dd51c53b0c2b41 (patch) | |
tree | ec7eb7e353cd28d8269d3543150c591e096f6eb2 /config | |
parent | 79243c2f8df520a9e6743e224dbfe111a600c036 (diff) | |
download | crosstool-ng-8bcd5c689cba82ae6695b77b81dd51c53b0c2b41.tar.gz crosstool-ng-8bcd5c689cba82ae6695b77b81dd51c53b0c2b41.tar.bz2 crosstool-ng-8bcd5c689cba82ae6695b77b81dd51c53b0c2b41.zip |
cc/gcc: remove svn source
Since we now have the opportunity to use a custom local directory/tarball
as the source for gcc, it no longer makes sense to retrieve gcc ourselves
from its subversion repository.
Cc: Bryan Hundven <bryanhundven@gmail.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Diffstat (limited to 'config')
-rw-r--r-- | config/cc/gcc.in | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/config/cc/gcc.in b/config/cc/gcc.in index 15b2d46c..95c22f1c 100644 --- a/config/cc/gcc.in +++ b/config/cc/gcc.in @@ -34,13 +34,6 @@ choice bool prompt "gcc version" -config CC_V_SVN - bool - prompt "gcc from svn" - depends on EXPERIMENTAL - depends on CONFIGURE_has_svn - select CC_GCC_latest - # Don't remove next line # CT_INSERT_VERSION_BELOW @@ -247,62 +240,6 @@ config CC_CUSTOM endchoice -if CC_V_SVN - -config GCC_BRANCH - string - prompt "Branch or tag to use" - default "trunk" - help - Enter the branch of gcc to use. Default is trunk - - A few examples might be: - * trunk - * branches/gcc-4_7-branch - * branches/gcc-4_4-branch - * branches/gccgo - * branches/google - * tags/gcc_4_7_1_release - * tags/microblaze-4.4.2 - -config GCC_REVISION - string - prompt "Revision to use" - default "HEAD" - help - Enter the revision of you want to use. Default is HEAD - - A revision argument can be one of: - NUMBER revision number - '{' DATE '}' revision at start of the date (*) - 'HEAD' latest in repository - - (*) If you want to use a date, please use ISO-8601 formats if - at all possible. - -config GCC_HTTP - bool - prompt "use http:// instead of svn://" - help - By default, when gcc is downloaded it is checked out using - svn://gcc.gnu.org/svn/gcc. This option allows you to download gcc - from http://gcc.gnu.org/svn/gcc, if you are behind a proxy or firewall. - If you are behind a proxy, don't forget to update your - .subversion/servers file with your proxy info in [global]. - -config GCC_CHECKOUT - bool - prompt "checkout instead of export" - help - By default, the gcc download will be an export of the subversion - repository. If you say 'y' here, then the repository will instead be - checked-out, so that you can update it later. - - Note that crosstool-NG will *not* update your working copy, you will - have to do that yourself. - -endif - if CC_CUSTOM config CC_CUSTOM_LOCATION @@ -461,7 +398,6 @@ config CC_GCC_HAS_LIBQUADMATH config CC_VERSION string - default "SVN" if CC_V_SVN # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW default "linaro-4.7-2012.10" if CC_V_linaro_4_7_2012_10 |