summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-02-25Merge pull request #1150 from stilor/patches-gcc-8.3.0crosstool-ng-1.24.0-rc2Alexey Neyman6-110/+55
Run GCC 8.3.0 patches through manage-packages.sh -P
2019-02-25Run GCC 8.3.0 patches through manage-packages.sh -PAlexey Neyman6-110/+55
Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-25Merge pull request #1147 from galak/gcc-8.3.0Alexey Neyman26-62/+112
Update to gcc 8.3.0
2019-02-25Merge pull request #1144 from bwalle/expat-docbookAlexey Neyman1-0/+1
expat: Build without docbook
2019-02-25Merge pull request #1148 from dimkr/static-muslAlexey Neyman1-0/+5
Fix musl build when CT_SHARED_LIBS=n
2019-02-24Fix musl build when CT_SHARED_LIBS=nDima Krasner1-0/+5
Signed-off-by: Dima Krasner <dima@dimakrasner.com>
2019-02-23Update to gcc 8.3.0Kumar Gala26-62/+112
Had to update the following patches so they'd apply: 0006-libgfortran-missing-include.patch 0010-crystax.patch Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2019-02-22Merge pull request #1146 from stilor/rc2-fixes-3Alexey Neyman3-2/+18
Add a Dockerfile for Alpine Linux 3.8
2019-02-22Add a Dockerfile for Alpine Linux 3.8Alexey Neyman3-2/+18
Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-22Merge pull request #1145 from stilor/rc2-fixes-3Alexey Neyman1-0/+2
Don't enable "shared flat"
2019-02-22Don't enable "shared flat"Alexey Neyman1-0/+2
... unless experimental. This unbreaks m68k-uclinux-uclibc sample which after the recent change in uClibc.sh attempted to build a shared flat library and failed. We were not building shared flat libraries before. Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-20expat: Build without docbookBernhard Walle1-0/+1
This fixes following build error on Debian 9: configure: error: Your local docbook2man was found to work with SGML rather than XML. Please install docbook2X and use variable DOCBOOK_TO_MAN to point configure to command docbook2x-man of docbook2X. Or use DOCBOOK_TO_MAN="xmlto man --skip-validation" if you have xmlto around. You can also configure using --without-docbook if you can do without a man page for xmlwf. Signed-off-by: Bernhard Walle <bernhard@bwalle.de>
2019-02-20Merge pull request #1143 from stilor/rc2-fixes-2Alexey Neyman3-2/+19
RC2 fixes, part 2
2019-02-20Select flat/FDPIC in accordance with ct-ng settingAlexey Neyman1-0/+9
uClibc-ng 1.0.31 enabled FDPIC as an option for ARM/no-MMU configurations and defaults to that option if not set explicitly. Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-20Add debug output to Kconfig manipulation functionsAlexey Neyman1-0/+3
Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-20Stash the uClibc config after our modsAlexey Neyman1-0/+4
... before running `make olddefconfig`. This helps in debugging. Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-20Duh! do not override ${cflags}Alexey Neyman1-2/+3
... in the backend function with ${CFLAGS_FOR_HOST}. The caller either supplies them already, or (in case of pass-1/2 of the canadian cross) passes ${CFLAGS_FOR_BUILD} there. Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-18Merge pull request #1142 from stilor/rc2-fixesAlexey Neyman13-61/+179
Fixes for regressions in 1.24.0-rc1
2019-02-18Pick up a newer revision of elf2fltAlexey Neyman3-71/+1
... which includes the two local patches we have. Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-18No longer mark newlib 3.x experimentalAlexey Neyman2-2/+0
... they seem to have overcome the birthing pains of 3.0.0 and build is stable. Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-18Move moxiebox build to post_ccAlexey Neyman2-5/+4
core-2 gcc does not search the final prefix now for newlib's headers. Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-18Use -idirafter instead of copying headers.Alexey Neyman1-13/+20
Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-18Add sample from #985Alexey Neyman2-0/+42
Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-16Disable CXX while building glibcAlexey Neyman1-3/+4
Otherwise, glibc 2.29 tries to use it - but we haven't built libstdc++ yet. We really need to implement #808... Until now, pass empty CXX to make. Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-16Check/increase `ulimit -n` settingAlexey Neyman1-0/+8
... 2.32 ld runs out of file descriptors while linking uClibc-ng on SuperH. Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-15strace 4.26 doesn't build on mips/o32Alexey Neyman1-0/+91
... so pick up a patch from upstream. Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-15Patch elf2flt to fix the breakage with host GCC8Alexey Neyman3-30/+70
... and binutils 2.32 (more headers needed). Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-14Improve error detectionAlexey Neyman1-7/+9
... by filtering the messages that contain a *word* "warning" or "error", i.e. is preceded by a space or is at the beginning of the line. This improves the output from new uClibc-ng releases - which produce a warning about an unused label, `mprot_error`. Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-14Merge pull request #1140 from stilor/upgradecrosstool-ng-1.24.0-rc1Alexey Neyman91-218/+887
Package updates
2019-02-14Another wave of version updatesAlexey Neyman88-187/+833
Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-13Update config.{sub,guess}Alexey Neyman2-25/+34
Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-13Check if two versions conflictAlexey Neyman1-6/+20
by resolving to the same "relevant" portion. Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-13Merge pull request #1139 from stilor/masterAlexey Neyman3-30/+20
decouple darwin/clang
2019-02-13Check for lzip (some archives are lzipped)Alexey Neyman1-0/+1
Ideally, we should just skip the archives for which we don't have the utilities; let's leave it until I convert the "trivial checks" part of crosstool-NG.sh into a separate configure script. Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-13Use CFLAGS for both CFLAGS/CXXFLAGS in GDBAlexey Neyman1-22/+6
These config variables are documented as such anyway. Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-13decouple darwin/clang here as per #712Roy Storey1-12/+11
https://github.com/crosstool-ng/crosstool-ng/issues/712#issuecomment-300891861
2019-02-13clang check before add to CT_CFLAGS_FOR_BUILD/HOSTRoy Storey1-0/+6
2019-02-13Merge pull request #1138 from stilor/masterAlexey Neyman4-20/+54
Implement an option to store downloads in subdirs
2019-02-13Implement an option to store downloads in subdirsAlexey Neyman4-20/+54
... following the buildroot model. Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-13Merge pull request #1136 from stilor/upgrading2Alexey Neyman102-605/+677
Upgradability, phase 2
2019-02-09Run the samples through update to v2Alexey Neyman93-94/+94
Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-09Use enhanced framework for 'ct-ng update-samples'Alexey Neyman6-20/+19
Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-09Improve upgradability of defconfig filesAlexey Neyman4-492/+565
- Switch to two-pass reading of the config file to track both (a) the option's value and (b) if the option has been explicitly called out in the .config being processed. - Split off per-version functions into separate files. - Add a README with some guidelines on writing new upgrade scripts. Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-07Merge pull request #1133 from carlo-bramini/fix-libintl-errorAlexey Neyman1-2/+3
Correctly reference to libintl when linking.
2019-02-07Merge pull request #1134 from stilor/upgradingAlexey Neyman151-321/+10876
Upgrade script + test suite
2019-02-06Add test if kconfig file version needs to be bumpedAlexey Neyman4-0/+5851
Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-06Add a few tests to upgrade testsuiteAlexey Neyman10-10/+4037
... coverage not complete, but pretty diverse and covers most non-trivial conversions. PRs with better coverage for 1.23.o options welcome. Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-05Correctly reference to libintl when linking.carlo-bramini1-2/+3
2019-02-05Start a testsuite for upgrade scriptAlexey Neyman3-1/+119
Signed-off-by: Alexey Neyman <stilor@att.net>
2019-02-01Upgrade script for v2 of the configAlexey Neyman1-0/+114
Signed-off-by: Alexey Neyman <stilor@att.net>