diff options
author | Alexey Neyman <stilor@att.net> | 2017-02-05 20:41:46 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-05 20:41:46 -0800 |
commit | df7579f2050379e14dbaaa25dd9219e03a142099 (patch) | |
tree | 9593cf4c2371ccd1858468820e6da1f159aad3d2 /scripts/addToolVersion.sh | |
parent | 10db7887ce0ff5e8323dc35176eaabbb3618e81c (diff) | |
parent | 71dccfffbb8b9f0f05f6c5e5bfb250770f0d5cd4 (diff) | |
download | crosstool-ng-df7579f2050379e14dbaaa25dd9219e03a142099.tar.gz crosstool-ng-df7579f2050379e14dbaaa25dd9219e03a142099.tar.bz2 crosstool-ng-df7579f2050379e14dbaaa25dd9219e03a142099.zip |
Merge pull request #573 from stilor/add-libz-companion-lib
Add zlib as a companion lib
Diffstat (limited to 'scripts/addToolVersion.sh')
-rwxr-xr-x | scripts/addToolVersion.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/addToolVersion.sh b/scripts/addToolVersion.sh index bf592323..dbd12439 100755 --- a/scripts/addToolVersion.sh +++ b/scripts/addToolVersion.sh @@ -18,7 +18,7 @@ doHelp() { 'tool' in one of: gcc, binutils, glibc, uClibc, uClibc-ng, newlib, linux, gdb, duma, strace, ltrace, libelf, gmp, mpfr, isl, cloog, mpc, - mingw-w64, expat, ncurses, musl, gettext + mingw-w64, expat, ncurses, musl, gettext, zlib Valid options for all tools: --stable, -s, +x (default) @@ -210,6 +210,7 @@ while [ $# -gt 0 ]; do --expat) EXP=; OBS=; cat=EXPAT; tool=expat; tool_prefix=companion_libs; dot2suffix=;; --ncurses) EXP=; OBS=; cat=NCURSES; tool=ncurses; tool_prefix=companion_libs; dot2suffix=;; --gettext) EXP=; OBS=; cat=GETTEXT; tool=gettext; tool_prefix=companion_libs; dot2suffix=;; + --zlib) EXP=; OBS=; cat=ZLIB; tool=zlib; tool_prefix=companion_tools; dot2suffix=;; --make) EXP=; OBS=; cat=MAKE; tool=make; tool_prefix=companion_tools; dot2suffix=;; --m4) EXP=; OBS=; cat=M4; tool=m4; tool_prefix=companion_tools; dot2suffix=;; --autoconf) EXP=; OBS=; cat=AUTOCONF; tool=autoconf; tool_prefix=companion_tools; dot2suffix=;; |