summaryrefslogtreecommitdiff
path: root/config/companion_libs
AgeCommit message (Collapse)AuthorFilesLines
2017-02-06Merge pull request #575 from stilor/ncurses-configureAlexey Neyman1-6/+49
Allow some tunables for ncurses
2017-02-05Add zlib as a companion libAlexey Neyman1-0/+19
with version 1.2.11. Signed-off-by: Alexey Neyman <stilor@att.net>
2017-02-05Allow some tunables for ncursesAlexey Neyman1-6/+49
- Allow user to specify configure arguments to pass through to host/target ncurses. - Checkbox for --disable-database - String option for --with-fallbacks Signed-off-by: Alexey Neyman <stilor@att.net>
2017-01-26Add gettext 0.19.8.1Alexey Neyman1-1/+7
Patches: 120 - updated to apply cleanly 140,150 - removed, now upstream Signed-off-by: Alexey Neyman <stilor@att.net>
2017-01-26Declare older versions obsolete.Alexey Neyman7-33/+67
Signed-off-by: Alexey Neyman <stilor@att.net>
2017-01-18Linaro's 4.9 requires ISL 0.14 or olderAlexey Neyman1-0/+3
Signed-off-by: Alexey Neyman <stilor@att.net>
2017-01-14Add expat 2.1.1 and 2.2.0.Alexey Neyman1-3/+8
Signed-off-by: Alexey Neyman <stilor@att.net>
2017-01-13Add ISL 0.17.1 and 0.18.Alexey Neyman1-0/+21
GCC accepts them using the same check for "0.15 or newer", but since they are not "officially recommended" by GCC installation guide, mark them as experimental. Signed-off-by: Alexey Neyman <stilor@att.net>
2017-01-13Sort out ISL/CLooG dependencies.Alexey Neyman2-9/+22
Source-wise, both CLooG and GCC depend on ISL, and GCC may depend on CLooG. However, GCC may or may not require CLooG (GCC5 dropped this dependency). Also, all GCC4.x releases build fine with any of the CLooG releases we have. With all that in mind, it is easier to specify ISL dependency on particular GCC releases; and CLooG dependency (if applicable) on ISL. Signed-off-by: Alexey Neyman <stilor@att.net>
2017-01-06Bump ISL to 0.16.1Alastair D'Silva1-0/+11
Signed-off-by: Alastair D'Silva <alastair@d-silva.org>
2017-01-06Bump MPFR to 3.1.5Alastair D'Silva1-0/+5
Signed-off-by: Alastair D'Silva <alastair@d-silva.org>
2017-01-06Bump GMP version to 6.1.2Alastair D'Silva1-0/+6
Signed-off-by: Alastair D'Silva <alastair@d-silva.org>
2016-04-29gettext: bump version to 0.19.7Jim Huang1-3/+3
2016-01-06Merge pull request #296 from FreddieChopin/add-gmp-6.1.0Bryan Hundven1-0/+6
gmp: add version 6.1.0
2015-12-07gmp: add version 6.1.0Freddie Chopin1-0/+6
Signed-off-by: Freddie Chopin <freddie.chopin@gmail.com>
2015-11-30PPL: Remove support for PPL and CLooG/PPLBryan Hundven2-61/+0
Now that versions of gcc that required PPL are no longer supported ( >= gcc-4.5.x AND <= gcc-4.7.x ) ...we no longer require PPL or CLooG/PPL. This commit: * Removes PPL * Removes CLooG/PPL * Updates the documentation * Updates build script for CLooG and GCC * Removes PPL and CLooG/PPL from scripts/addToolVersion.sh and scripts/showSamples.sh * Adds ISL to scripts/addToolVersion.sh and scripts/showSamples.sh I know that sounds like a lot for one commit, but it was all kind of inter-tangled. Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
2015-11-16ncurses: bump to ncurses-6.0Bryan Hundven1-3/+16
This commit removes ncurses-5.9 and adds 6.0. I also provide the stable patch updates in patches/ncurses/6.0. I have also added an experimental toggle for enabling the new ABI support. Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
2015-11-13Change ncurses to a companion library.Alexey Neyman1-0/+19
Currently, builds for build and target (matching the current implementation). Need to add building for host for canadian crosses. TIC_PATH is removed - configure in ncurses searches $PATH, so it finds 'tic' in buildtools anyway. Arguably unneeded code for MacOS also removed, with a FIXME comment for validation by someone using MacOS. Signed-off-by: Alexey Neyman <stilor@att.net>
2015-11-13Convert expat for target into a companion lib.Alexey Neyman1-0/+19
Expat-for-host to be done. Signed-off-by: Alexey Neyman <stilor@att.net>
2015-11-13file modes: Set files to be non-executableBryan Hundven1-0/+0
I was going to start doing some autoconf work, and noticed that configure.in was executable. Then I noticed Makefile.in was executable. o.O So, I ran ```find . -type f -executable``` and found a bunch of files that shouldn't be set executable. This commit makes them normal files again. Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
2015-11-13Add gettext and libiconv as companion libsRay Donnelly2-0/+38
.. they're needed for the RPC generation in glibc on both Cygwin and MinGW-w64. Neither are built on GNU/Linux and iconv is not built on Darwin. Two patches for gettext are needed, one so that -O0 works and one so that static builds can be made. They can take a good while to build, so if not needed for_host or for_build then they are not built. Signed-off-by: Ray Donnelly <mingw.android@gmail.com>
2015-10-31gcc: Support only the latest branch releases of gccBryan Hundven1-3/+3
This change, as per #222, reduces the number of supported releases of gcc to the latest branch releases. I noticed while doing this work that gcc-4.5.4 was never added, so I moved patches for gcc-4.5.3 to 4.5.4 and updated the bfin-unknown-linux-uclibc example. Also, 120-siginfo.patch was fixed upstream in the 4.5.4 release, so this patch is omitted. I also bumped the avr sample to 4.9.3 from 4.9.2. With the addition of gcc-5.x, the gcc release team now releases the major.minor.0 versions, while updates to the branch are available in svn/git. We'll address that when we get to issue #219. This change just removes CC_GCC_5_1 and moves CC_GCC_5_2 to CC_GCC_5, and removes CC_GCC_5_1_or_later and moves CC_GCC_5_2_or_later to CC_GCC_5_or_later. This is the first of two part changes, as mentioned in #222. This change is slated for release in 1.22.0. The next change will be slated for 1.23.0, and will limit gcc versions to what is on https://gcc.gnu.org under "Release Series and Status", which is currently 4.9.3 and 5.2.0, although I will also support the previous supported version. In this example that would be 4.8.5. Last, but not least, this change also retires AVR32 support. Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
2015-09-22Remove isl 0.15, because it will not compile with gcc 5.2.0 without patching ↵Jasmin Jessich1-11/+0
gcc.
2015-09-13Fixed issue 173 and 174.Jasmin Jessich1-3/+3
gcc 5.x -> isl 0.12.2, 0.14 0.15 gcc < 5.x -> cloog < 0.18.4 -> isl 0.12.2, 0.11.1 -> cloog >= 0.18.4 -> isl 0.14 Signed-off-by: Jasmin Jessich <jasmin@anw.at>
2015-09-05Merge pull request #153 from jasmin-j/mpfr_3_1_3Bryan Hundven1-0/+5
Support mpfr V 3.1.3
2015-09-05Merge pull request #152 from jasmin-j/mpc_1_0_3Bryan Hundven1-0/+5
Support mpc V 1.0.3
2015-09-05Adding CLooG 0.18.4.Jasmin Jessich2-0/+24
Adding isl 0.15. Added following constrains: isl 0.14 and 0.15 require CLooG 0.18.4 or later. isl 0.11.1 and 0.12.2 require CLoog older than 0.18.4. Signed-off-by: Jasmin Jessich <jasmin@anw.at>
2015-09-01Support mpfr 3.1.3 in configuration.Jasmin Jessich1-0/+5
Signed-off-by: Jasmin Jessich <jasmin@anw.at>
2015-09-01Support mpc 1.0.3 in configuration.Jasmin Jessich1-0/+5
Signed-off-by: Jasmin Jessich <jasmin@anw.at>
2015-09-01Added new config ISL_V_0_14_or_later and ISL_V_0_12_or_later to selectJasmin Jessich1-0/+9
proper configure options for isl 0.14.x and 0.12.x in 121-isl.sh. Signed-off-by: Jasmin Jessich <jasmin@anw.at>
2015-05-02complibs: Update requirements for gcc-5.1Bryan Hundven1-0/+1
"The Graphite framework for loop optimizations no longer requires the CLooG library, only ISL version 0.14 (recommended) or 0.12.2. The installation manual contains more information about requirements to build GCC." This change helps to avoid version badness. Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
2015-04-25config/isl: bump isl to 0.14 for >=gcc-5.1Bryan Hundven1-0/+5
Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
2014-12-23gmp: Disable --enable-mpbsd if version is >= 5.0.2Bryan Hundven1-0/+8
closes #12 Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
2014-12-05companion_libs/gmp: pump gmp to version 6.0.0aDaniel Zimmermann1-0/+5
# HG changeset patch # User Daniel Zimmermann <netzimme@gmail.com> # Date 1402524592 -7200 # Thu Jun 12 00:09:52 2014 +0200 # Node ID 30c0a797946f66f89a9bace2995957e6910174e9 # Parent 99029fac116b6cdd86de7015379dd765af77c116 companion_libs/gmp: pump gmp to version 6.0.0a pump gmp to version 6.0.0a Signed-off-by: '"Daniel Zimmermann" <netzimme@gmail.com>' Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
2014-05-26complibs/cloog: remove old CLooG/PPL versionsYann E. MORIN"1-31/+1
Those versions are no longer available upstream. They have purely and simply disapeared, without leaving any trace of their mere existences. Just keep the latest cloog-ppl-0.15.11, which still exists on the gcc infra mirror (but for how long?) Reported-by: Guillaume FLORENCE-COURTAND <gflorenc@laposte.net> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2014-02-17kernel/linux: pump ISL to version 0.12.2Daniel Zimmermann1-0/+5
kernel/linux: pump ISL to version 0.12.2 pump ISL to version 0.12.2 Signed-off-by: '"Daniel Zimmermann" <netzimme@gmail.com>' [yann.morin.1998@free.fr: remove superfluous empty lines] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Message-Id: <93ee409eb70170262d84.1392617512@haus-VirtualBox> Patchwork-Id: 320849
2014-02-11complibs/cloog: bump versiondanielrubiob1-0/+6
Signed-off-by: Daniel Rubio Bonilla <danielrubiob@gmail.com> [yann.morin.1998@free.fr: re-order versions] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Cody P Schafer <dev@codyps.com> Message-Id: <c2de3964cd6d5e4173cc.1391984023@uemo> Patchwork-Id: 318637
2014-02-09complibs/mpc: bump versiondanielrubiob1-1/+5
Signed-off-by: Daniel Rubio Bonilla <danielrubiob@gmail.com> Message-Id: <d78f3a4ba2df1e076851.1391984022@uemo> Patchwork-Id: 318636
2014-02-09complibs/gmp: bump versiondanielrubiob1-0/+5
Signed-off-by: Daniel Rubio Bonilla <danielrubiob@gmail.com> Message-Id: <e0361ed37146d025171f.1391984021@uemo> Patchwork-Id: 318635
2013-05-23complibs/mpc: add versions 1.0 and 1.0.1Daniel Rubio Bonilla1-0/+10
Signed-off-by: Daniel Rubio Bonilla <danielrubiob@gmail.com> Message-Id: <CAOfWMGAc7XMXYNZ2Tz-a4PgRrCsAz5hN5NkH9KRe9+pm+go7UQ@mail.gmail.com> Patchwork-Id: 245977
2013-05-04complibs/cloog: add support for the ISL backendYann E. MORIN"1-1/+19
CLooG 0.18+ will use ISL instead of PPL, so we have to configure adequately depending of which backend is in use. The Kconfig entries will decide for us which is selected, so we can rely on either PPL xor ISL to be selected, not both. Reported-by: "Plotnikov Dmitry" <leitz@ispras.ru> [Dmitry did a preliminray patch to add ISL support, which this patch is inspired from] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2013-05-03complibs: add ISLYann E. MORIN"1-0/+19
ISL is used by gcc-4.8 onward for GRAPHITE, so is also used as backend for CLooG 0.18.0 onward. Reported-by: "Plotnikov Dmitry" <leitz@ispras.ru> [Dmitry did a preliminray patch to add ISL, which this one is inspired from] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2013-04-26complibs/mpfr: bump versionYann E. MORIN"1-0/+5
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2013-04-26complibs/gmp: bump versionYann E. MORIN"1-0/+5
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2012-12-26all: remove versions marked obsoleteYann E. MORIN"3-30/+0
For major components, keep the latest version of each major releases. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2012-12-09complibs/ppl: fix build with newer gccYann E. MORIN"1-0/+6
ppl-0.10.x does not build with gcc-4.6+, as it uses constructs that were warnings with gcc-4.5 and before, but are now errors with gcc-4.6 and above. Fix that by passing -fpermissive in CFLAGS for ppl 0.10. Reported-by: Jeremy Rosen <jeremy.rosen@openwide.fr> Reported-by: Peter Korsgaard <jacmet@uclibc.org> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2012-05-02complibs: remove experimental from versions selectionYann E. MORIN"5-20/+11
Since I removed EXPERIMENTAL to most of gcc versions, the configuration is now broken, as the required companion libraries versions are not selectable, as they are still hidden behind EXPERIMENTAL. Reported-by: Claudio Henrique Fortes Felix (chffelix on irc://irc.freenode.net/crosstool-ng) Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
2012-01-27complibs/cloog: remove unsupported versions from configBenoît Thébaudeau"1-3/+0
Signed-off-by: "Benoît Thébaudeau" <benoit.thebaudeau@advansee.com>
2011-10-16complibs/cloog: auto-reconf for 0.15.10 and laterYann E. MORIN"1-0/+9
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
2011-10-16complibs/mpfr: update to 3.1.0Yann E. MORIN"1-0/+6
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>