mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 04:47:52 +00:00
Add uClibc-ng 1.0.17.
Also, support uClibc-ng in addToolVersion.sh Signed-off-by: Alexey Neyman <stilor@att.net>
This commit is contained in:
parent
202ca9b7d4
commit
f35c62daf0
@ -75,6 +75,11 @@ choice
|
||||
# Don't remove next line
|
||||
# CT_INSERT_VERSION_BELOW
|
||||
|
||||
config LIBC_UCLIBC_NG_V_1_0_17
|
||||
bool
|
||||
prompt "1.0.17"
|
||||
select LIBC_UCLIBC_NG_1_0_14_or_later
|
||||
|
||||
config LIBC_UCLIBC_NG_V_1_0_14
|
||||
bool
|
||||
prompt "1.0.14"
|
||||
@ -91,6 +96,7 @@ config LIBC_VERSION
|
||||
string
|
||||
# Don't remove next line
|
||||
# CT_INSERT_VERSION_STRING_BELOW
|
||||
default "1.0.17" if LIBC_UCLIBC_NG_V_1_0_17
|
||||
default "1.0.14" if LIBC_UCLIBC_NG_V_1_0_14
|
||||
default "0.9.33.2" if LIBC_UCLIBC_V_0_9_33_2
|
||||
|
||||
|
@ -16,7 +16,7 @@ doHelp() {
|
||||
cat <<-EOF
|
||||
Usage: ${myname} <--tool> <[options] version [...]> ...
|
||||
'tool' in one of:
|
||||
gcc, binutils, glibc, uClibc, newlib, linux, gdb, dmalloc,
|
||||
gcc, binutils, glibc, uClibc, uClibc-ng, newlib, linux, gdb, dmalloc,
|
||||
duma, strace, ltrace, libelf, gmp, mpfr, isl, cloog, mpc,
|
||||
mingw-w64, expat, ncurses
|
||||
|
||||
@ -179,6 +179,7 @@ while [ $# -gt 0 ]; do
|
||||
--binutils) EXP=; OBS=; cat=BINUTILS; tool=binutils; tool_prefix=binutils; dot2suffix=;;
|
||||
--glibc) EXP=; OBS=; cat=LIBC_GLIBC; tool=glibc; tool_prefix=libc; dot2suffix=;;
|
||||
--uClibc) EXP=; OBS=; cat=LIBC_UCLIBC; tool=uClibc; tool_prefix=libc; dot2suffix=;;
|
||||
--uClibc-ng)EXP=; OBS=; cat=LIBC_UCLIBC_NG; tool=uClibc; tool_prefix=libc; dot2suffix=;;
|
||||
--newlib) EXP=; OBS=; cat=LIBC_NEWLIB; tool=newlib; tool_prefix=libc; dot2suffix=;;
|
||||
--mingw-w64)EXP=; OBS=; cat=WINAPI; tool=mingw; tool_prefix=libc; dot2suffix=;;
|
||||
--linux) EXP=; OBS=; cat=KERNEL; tool=linux; tool_prefix=kernel; dot2suffix=;;
|
||||
|
Loading…
Reference in New Issue
Block a user