diff options
author | Alexey Neyman <stilor@att.net> | 2015-11-10 18:18:57 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2015-11-10 18:18:57 -0800 |
commit | bea0cde3051624261eff6e413a044161d581973a (patch) | |
tree | e017c232ea3d70fadc5edc94e3c47750d96a8dfc /scripts | |
parent | 319c999f77872cb265004e5db5d30d502bc8a0a4 (diff) | |
download | crosstool-ng-bea0cde3051624261eff6e413a044161d581973a.tar.gz crosstool-ng-bea0cde3051624261eff6e413a044161d581973a.tar.bz2 crosstool-ng-bea0cde3051624261eff6e413a044161d581973a.zip |
Support mingw-w64 in addToolVersion.sh.
... and add 4.0.4 release.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/addToolVersion.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/addToolVersion.sh b/scripts/addToolVersion.sh index 1ae47e84..37c3ae18 100755 --- a/scripts/addToolVersion.sh +++ b/scripts/addToolVersion.sh @@ -17,7 +17,8 @@ doHelp() { Usage: ${myname} <--tool> <[options] version [...]> ... 'tool' in one of: gcc, binutils, glibc, uClibc, newlib, linux, gdb, dmalloc, - duma, strace, ltrace, libelf, gmp, mpfr, ppl, cloog, mpc + duma, strace, ltrace, libelf, gmp, mpfr, ppl, cloog, mpc, + mingw-w64 Valid options for all tools: --stable, -s, +x (default) @@ -180,6 +181,7 @@ while [ $# -gt 0 ]; do --glibc) EXP=; OBS=; cat=LIBC_GLIBC; tool=glibc; tool_prefix=libc; dot2suffix=;; --uClibc) EXP=; OBS=; cat=LIBC_UCLIBC; 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=;; --gdb) EXP=; OBS=; cat=GDB; tool=gdb; tool_prefix=debug; dot2suffix=;; --dmalloc) EXP=; OBS=; cat=DMALLOC; tool=dmalloc; tool_prefix=debug; dot2suffix=;; |