aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge pull request #628 from stilor/no-install-DAlexey Neyman2017-03-014-0/+119
|\ \ | |/ |/| Fix uClibc{,-ng} build on macos
| * Fix uClibc{,-ng} build on macosAlexey Neyman2017-03-014-0/+119
|/ | | | Signed-off-by: Alexey Neyman <stilor@att.net>
* Merge pull request #626 from stilor/masterAlexey Neyman2017-03-019-0/+288
|\ | | | | Backport the fix from 2.19 for cross-rpcgen on macos
| * Backport the fix from 2.19 for cross-rpcgen on macosAlexey Neyman2017-03-019-0/+288
|/ | | | Signed-off-by: Alexey Neyman <stilor@att.net>
* Merge pull request #625 from stilor/skip-localedefAlexey Neyman2017-02-282-1/+13
|\ | | | | Skip localedef
| * Add a warning in menuconfig about localesAlexey Neyman2017-02-281-1/+4
| | | | | | | | Signed-off-by: Alexey Neyman <stilor@att.net>
| * Skip locale build on CygwinAlexey Neyman2017-02-281-0/+9
| | | | | | | | Signed-off-by: Alexey Neyman <stilor@att.net>
* | Merge pull request #624 from stilor/uclibc-no-cp-TAlexey Neyman2017-02-283-8/+4
|\ \ | |/ |/| No 'cp -T' on macos
| * Avoid -T, it is not available on macosAlexey Neyman2017-02-281-3/+1
| | | | | | | | Signed-off-by: Alexey Neyman <stilor@att.net>
| * Unobsolete CLooG/ISL versions compatible with 4.9Alexey Neyman2017-02-282-5/+3
|/ | | | | | ... or it leaves them with no valid choices. Signed-off-by: Alexey Neyman <stilor@att.net>
* Merge pull request #619 from stilor/refix-elf2fltAlexey Neyman2017-02-283-81/+247
|\ | | | | Fix elf2flt build on Cygwin in a different way
| * Macos needs a local ELF header, tooAlexey Neyman2017-02-282-4/+61
| | | | | | | | Signed-off-by: Alexey Neyman <stilor@att.net>
| * Fix elf2flt build on Cygwin in a different wayAlexey Neyman2017-02-282-81/+190
|/ | | | | | ... after discussion with elf2flt maintainer. Signed-off-by: Alexey Neyman <stilor@att.net>
* Merge pull request #622 from stilor/missing-linaro-patchesAlexey Neyman2017-02-28102-127/+8994
|\ | | | | Add patches to Linaro GCC
| * Add patches to Linaro GCCAlexey Neyman2017-02-28102-127/+8994
| | | | | | | | | | | | | | | | | | Same as the base release as long as they applied. MUSL patches didn't, removed. Also, unobsolete Linaro GCC5 now that they rolled out a new release. Signed-off-by: Alexey Neyman <stilor@att.net>
* | Merge pull request #620 from stilor/require-xzAlexey Neyman2017-02-283-38/+4
|\| | | | | Require xz to be present
| * Require xz to be presentAlexey Neyman2017-02-273-38/+4
|/ | | | | | | | Some software starts to adopt xz-only distribution (strace, gcc-linaro, ...). Better that than deal with cryptic errors like "cannot find strace-.tar.bz2". Signed-off-by: Alexey Neyman <stilor@att.net>
* Merge pull request #618 from stilor/revert-sed-require-gnu-sedAlexey Neyman2017-02-2723-186/+112
|\ | | | | Require GNU sed on macos
| * Sed version may be reported differentlyAlexey Neyman2017-02-271-1/+1
| | | | | | | | | | | | Either "GNU sed, version" or "gsed (GNU sed)". Signed-off-by: Alexey Neyman <stilor@att.net>
| * Require GNU sedAlexey Neyman2017-02-267-98/+47
| | | | | | | | | | | | | | | | | | | | | | | | After much struggling with macos (BSD) sed and even getting everything work in crosstool-ng itself, I had to abandon that because some components rely on GNU syntax. Specifically, GNU libc uses '/.../{H;g}' (note absense of the separator after 'g'). So, revert the -r/-E detection and check for sed's being of GNU origin. MacOS people, sorry, but you'd have to install GNU sed. Signed-off-by: Alexey Neyman <stilor@att.net>
| * Revert "Determine whether -E/-r option selects extended regexp"Alexey Neyman2017-02-2622-117/+94
| | | | | | | | This reverts commit 7bcf18bfab84374d3305c7a088f95ac1219ddf93.
| * Revert "Fix breakage from sed_r change in some auxiliary scripts"Alexey Neyman2017-02-265-29/+29
|/ | | | This reverts commit 5ea3f2967f105713ec0c707b4f3da9519912f9d0.
* Merge pull request #614 from stilor/elf2flt-cygwinAlexey Neyman2017-02-222-1/+81
|\ | | | | Fix the build of elf2flt on Cygwin
| * Fix the build of elf2flt on CygwinAlexey Neyman2017-02-222-1/+81
| | | | | | | | | | | | | | | | | | | | | | | | | | The -lcygwin -lc actually breaks the build: elf2flt picks up the symbols for getopt/optarg via <getopt.h> in binutils-X.Y/include, where optarg is declared without dllimport attribute. Therefore it pulls in getopt() from libc/libcygwin, but since optarg is not prefixed with _imp__, it is pulled from libiberty. But the object file in libiberty also contains getopt() thus resulting in multiple definitions thereof. While there, kill extraneous -ldl passed into configure - configure detects -ldl successfully. Upstream: https://github.com/uclinux-dev/elf2flt/pull/6 Signed-off-by: Alexey Neyman <stilor@att.net>
* | Merge pull request #375 from jasmin-j/add_tls_configAlexey Neyman2017-02-222-0/+31
|\ \ | |/ |/| Added new gcc config option CC_GCC_CONFIG_TLS
| * Added new gcc config option CC_GCC_CONFIG_TLSJasmin Jessich2017-02-212-0/+31
| | | | | | | | | | | | | | Adding new tristate configuration for TLS (Thread Local Storage) to add "--enable-tls" (y), "--disable-tls" (n) or nothing (m). Signed-off-by: Jasmin Jessich <jasmin@anw.at>
* | Merge pull request #613 from stilor/removed-file-still-presentAlexey Neyman2017-02-212-64/+1
|\ \ | |/ |/| Kill a generated file
| * Kill a generated fileAlexey Neyman2017-02-212-64/+1
|/ | | | | | ... and add it to .gitignore. Signed-off-by: Alexey Neyman <stilor@att.net>
* Merge pull request #612 from stilor/linaro-4-5Alexey Neyman2017-02-201-9/+9
|\ | | | | Linaro also has new 4.9 and 5.4 releases
| * Linaro also has new 4.9 and 5.4 releasesAlexey Neyman2017-02-201-9/+9
|/ | | | Signed-off-by: Alexey Neyman <stilor@att.net>
* Merge pull request #610 from stilor/linaro-6.3-2017.02Alexey Neyman2017-02-191-6/+6
|\ | | | | Bump Linaro GCC6 to 6.3-2017-02
| * Bump Linaro GCC6 to 6.3-2017-02Alexey Neyman2017-02-191-6/+6
| | | | | | | | Signed-off-by: Alexey Neyman <stilor@att.net>
* | Merge pull request #609 from stilor/gdb-7.12.1Alexey Neyman2017-02-199-6/+6
|\ \ | | | | | | Add GDB 7.12.1
| * | Upgrade GDB 7.11 -> 7.11.1Alexey Neyman2017-02-195-3/+3
| | | | | | | | | | | | Signed-off-by: Alexey Neyman <stilor@att.net>
| * | Upgrade GDB 7.12 -> 7.12.1Alexey Neyman2017-02-195-3/+3
| |/ | | | | | | Signed-off-by: Alexey Neyman <stilor@att.net>
* | Merge pull request #608 from stilor/static-no-pluginsAlexey Neyman2017-02-195-177/+60
|\ \ | | | | | | Disable LTO for static toolchain
| * | Newlib's LTO only makes sense if GCC supports itAlexey Neyman2017-02-181-0/+1
| | | | | | | | | | | | Signed-off-by: Alexey Neyman <stilor@att.net>
| * | More garbage collectionAlexey Neyman2017-02-183-45/+10
| | | | | | | | | | | | Signed-off-by: Alexey Neyman <stilor@att.net>
| * | Have LTO depend-on non-static buildsAlexey Neyman2017-02-182-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | Loading a dynamic library (LTO plugin) from a static binary fails on ArchLinux. It is also prone to break if a system is ever upgraded. Also, disable plugins if not enabled explicitly. Signed-off-by: Alexey Neyman <stilor@att.net>
| * | Latest GCC has libmpx and Go.Alexey Neyman2017-02-181-0/+2
| | | | | | | | | | | | Signed-off-by: Alexey Neyman <stilor@att.net>
| * | More GCAlexey Neyman2017-02-183-34/+16
| | | | | | | | | | | | Signed-off-by: Alexey Neyman <stilor@att.net>
| * | Garbage collection for GCC options that are sameAlexey Neyman2017-02-183-99/+29
| |/ | | | | | | | | | | ... on all supported versions. Signed-off-by: Alexey Neyman <stilor@att.net>
* | Merge pull request #607 from stilor/ncurses-moreAlexey Neyman2017-02-191-3/+12
|\ \ | |/ |/| Add --disable-database and --with-fallbacks separately
| * Add --disable-database and --with-fallbacks separatelyAlexey Neyman2017-02-171-3/+12
|/ | | | | | The dependency between them has been removed in Kconfig. Signed-off-by: Alexey Neyman <stilor@att.net>
* Merge pull request #604 from stilor/strace-4.16Alexey Neyman2017-02-176-29/+35
|\ | | | | Strace 4.16
| * Add strace 4.16Alexey Neyman2017-02-161-0/+6
| | | | | | | | Signed-off-by: Alexey Neyman <stilor@att.net>
| * Fix breakage from sed_r change in some auxiliary scriptsAlexey Neyman2017-02-165-29/+29
| | | | | | | | | | | | ... do not overquote the variables from paths.sh. Signed-off-by: Alexey Neyman <stilor@att.net>
* | Merge pull request #603 from stilor/fix-zlib-cygwinAlexey Neyman2017-02-171-0/+30
|\ \ | | | | | | Fix undefined reference to _wopen on Cygwin
| * | Fix undefined reference to _wopen on CygwinAlexey Neyman2017-02-151-0/+30
| |/ | | | | | | Signed-off-by: Alexey Neyman <stilor@att.net>
* | Merge pull request #602 from stilor/uclibc-verbosityAlexey Neyman2017-02-171-2/+8
|\ \ | |/ |/| Refine previous fix to uClibc verbosity setting