mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 04:47:52 +00:00
Resolve a few more TBDs
Signed-off-by: Alexey Neyman <stilor@att.net>
This commit is contained in:
parent
64d5c254c7
commit
fd522eed50
@ -605,8 +605,6 @@ enter_choice()
|
||||
local choice="${1}"
|
||||
local l
|
||||
|
||||
# TBD generate sourcing of versions/$component.in automatically - and add a comment
|
||||
# TBD that versions must be generated first? [what to do with glibc/glibc-ports]
|
||||
info[choice]="${choice}"
|
||||
info[kcfg_choice]=`kconfigize "${choice}"`
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
repository='git git://sourceware.org/git/binutils-gdb.git'
|
||||
mirrors='$(CT_Mirrors GNU binutils) $(CT_Mirrors sourceware)'
|
||||
mirrors='$(CT_Mirrors GNU binutils) $(CT_Mirrors sourceware/releases)'
|
||||
origin='GNU'
|
||||
milestones='2.23'
|
||||
|
@ -1,4 +1,4 @@
|
||||
repository='svn svn://gcc.gnu.org/svn/gcc'
|
||||
mirrors='$(CT_Mirrors GNU gcc/gcc-${CT_GCC_VERSION}) $(CT_Mirrors sourceware gcc gcc-${CT_GCC_VERSION})'
|
||||
mirrors='$(CT_Mirrors GNU gcc/gcc-${CT_GCC_VERSION}) $(CT_Mirrors sourceware gcc/releases/gcc-${CT_GCC_VERSION})'
|
||||
origin='GNU'
|
||||
milestones='4.8 4.9 4.9.2 5 6 7'
|
||||
|
@ -1,4 +1,4 @@
|
||||
origin='GNU'
|
||||
repository='git git://sourceware.org/git/binutils-gdb.git'
|
||||
mirrors='$(CT_Mirrors GNU gdb) $(CT_Mirrors sourceware gdb)'
|
||||
mirrors='$(CT_Mirrors GNU gdb) $(CT_Mirrors sourceware gdb/releases)'
|
||||
milestones='7.0 7.2 8.0'
|
||||
|
@ -2,7 +2,7 @@
|
||||
# the ports were an external add-on, it used a separate repository
|
||||
# and separate tarballs.
|
||||
repository='git git://sourceware.org/git/glibc-ports.git'
|
||||
mirrors='$(CT_Mirrors GNU glibc) $(CT_Mirrors sourceware glibc)'
|
||||
mirrors='$(CT_Mirrors GNU glibc) $(CT_Mirrors sourceware glibc/releases)'
|
||||
|
||||
# Version of this package must be the same as the glibc's
|
||||
versionlocked='glibc'
|
||||
|
@ -1,4 +1,4 @@
|
||||
origin='GNU'
|
||||
repository='git git://sourceware.org/git/glibc.git'
|
||||
mirrors='$(CT_Mirrors GNU glibc) $(CT_Mirrors sourceware glibc)'
|
||||
mirrors='$(CT_Mirrors GNU glibc) $(CT_Mirrors sourceware glibc/releases)'
|
||||
milestones='2.17 2.20 2.23'
|
||||
|
@ -14,10 +14,11 @@ do_cc_get() {
|
||||
# GCC source tree, which will not be there unless we get it and
|
||||
# put it there ourselves
|
||||
if [ "${CT_CC_LANG_JAVA_USE_ECJ}" = "y" ]; then
|
||||
# TBD check return code
|
||||
CT_GetFile ecj-latest .jar http://mirrors.kernel.org/sourceware/java/ \
|
||||
ftp://gcc.gnu.org/pub/java \
|
||||
ftp://sourceware.org/pub/java
|
||||
if ! CT_GetFile ecj-latest .jar $(CT_Mirrors sourceware java); then
|
||||
# Should be a package, too - but with Java retirement in GCC,
|
||||
# it may not make sense.
|
||||
CT_Abort "Failed to download ecj-latest.jar"
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
# Build script for D.U.M.A.
|
||||
|
||||
do_debug_duma_get() {
|
||||
# TBD need cleanup after sourceforge.net download?
|
||||
CT_Fetch DUMA
|
||||
}
|
||||
|
||||
|
@ -1460,10 +1460,9 @@ CT_Mirrors()
|
||||
echo "ftp://ftp.gnu.org/gnu/${project}"
|
||||
;;
|
||||
sourceware)
|
||||
local subdir="${3:+/${3}}"
|
||||
echo "ftp://sourceware.org/pub/${project}/releases${subdir}"
|
||||
echo "http://mirrors.kernel.org/sourceware/${project}/releases${subdir}"
|
||||
echo "http://gcc.gnu.org/pub/${project}/releases${subdir}"
|
||||
echo "ftp://sourceware.org/pub/${project}"
|
||||
echo "http://mirrors.kernel.org/sourceware/${project}"
|
||||
echo "http://gcc.gnu.org/pub/${project}"
|
||||
;;
|
||||
Linaro)
|
||||
eval "local version=\"\${${3}}\""
|
||||
|
Loading…
Reference in New Issue
Block a user