Commit Graph

3410 Commits (1.22)
 

Author SHA1 Message Date
Bryan Hundven 6dcc001496 Merge pull request #340 from cpackham/glibc-2.16.0-backports-for-1.22
Glibc 2.16.0 backports for 1.22
7 years ago
Chris Packham 8356119b1e libc/glibc: Fix sed configure check
Backport of upstream commit.

Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz>
7 years ago
Chris Packham e812493c6f libc/glibc: allow glibc-2.16.0 to build with GNU Make 4 or greater
Back port of upstream commit.

Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz>
7 years ago
Bryan Hundven ced321f73c Merge pull request #279 from bhundven/mingw-w64-experimental
mingw-w64: Set it as experimental
7 years ago
Bryan Hundven e0fd82bb01 mingw-w64: Set it as experimental
With the upcoming release of 1.22.0, mingw-w64 is still in an
experimental state, and is not considered to be fully supported yet.

This change should be reverted after the release.

Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
7 years ago
Bryan Hundven ba7ca97523 Merge pull request #278 from bhundven/fix-uninstall
Makefile.in: Fix uninstall target
7 years ago
Bryan Hundven 1b48c9bd83 Makefile.in: Fix uninstall target
`make uninstall` is ran against `$(TARGETS)`, which includes `lib-kconfig`.
`lib-kconfig` is installed as a part of the `lib` target, so during
uninstall, removing `lib` is enough to also remove `lib-kconfig`.

Filter out `lib-kconfig` during `real-uninstall`.

Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
7 years ago
Bryan Hundven 7b69ac2fbb Merge pull request #276 from jcmvbkbc/xtensa-doc
Xtensa docs update
7 years ago
Max Filippov 2eeab4a4c6 docs: document Xtensa configuration overlay
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
7 years ago
Max Filippov 254d0681da xtensa: fix kconfig spelling and help text
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
7 years ago
Bryan Hundven 582e89a5af Merge pull request #269 from stilor/document-update-samples
Document {check,update}-samples targets.
7 years ago
Bryan Hundven 59a9e9e002 Merge pull request #272 from bhundven/showSamples_uClibc-ng_mingw
showSamples: Fix uClibc-ng name and Mingw-w64 versions
7 years ago
Bryan Hundven 6a6968cc8f showSamples: Fix uClibc-ng name and Mingw-w64 versions
Some LIBCs need some love in showSamples.sh.

uClibc-ng is of type of uClibc, so output uClibc-ng if
CT_LIBC_UCLIBC_NG=y.

mingw-w64 doesn't have a CT_LIBC_VERSION, but it does have a
CT_WINAPI_VERSION. So output that instead.

Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
7 years ago
Bryan Hundven b23d973e36 Merge pull request #270 from bhundven/fix_showSamples
showSamples.sh: Fix how we get gcc and version for showSamples.sh
7 years ago
Bryan Hundven 5739495c35 showSamples.sh: Fix how we get gcc and version for showSamples.sh
I'm not even sure how the previous loop was supposed to work.
The config variables are not exported to the environment.
Now we properly get which cc we are using and grab the version to
display it correctly with the output of wiki-samples.

Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
7 years ago
Alexey Neyman 860ac8d5fc Document {check,update}-samples targets.
Signed-off-by: Alexey Neyman <stilor@att.net>
7 years ago
Bryan Hundven 3c1d8625e6 Merge pull request #268 from bhundven/consistent_usage_of_found_apps
consistency: Use exported variables of required tools
7 years ago
Bryan Hundven 65fd24fc00 Merge pull request #265 from bhundven/ncurses_update
ncurses: bump to ncurses-6.0
7 years ago
Bryan Hundven 6f8e89cb5c consistency: Use exported variables of required tools
We check for apps:

* make
* sed
* grep
* awk
* libtool/libtoolize
* install
* patch
* and more

...during configure. Our scripts should be consistent about using the
variables that define where the found tool was found.

Of course, we do hard-link these tools in buildtools, but that should be
a backup for the components we are building. Our scripts should always
use the tools we find.

Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
7 years ago
Bryan Hundven 20f69f3240 ncurses: bump to ncurses-6.0
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>
7 years ago
Bryan Hundven e6c900a32f Merge pull request #267 from bhundven/uclibc-prompt-fix
uClibc-ng: Fix version prompt
7 years ago
Bryan Hundven 0929675b95 uClibc-ng: Fix version prompt
In commit c9704c6683, I forgot to bump the
version in the prompt for uClibc-ng-1.0.9.

Reported-by: Reinoud Koornstra <reinoudkoornstra@gmail.com>
Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
7 years ago
Bryan Hundven 6ac8e31a51 Merge pull request #262 from bhundven/fix_ncurses_tinfo
configure: Correctly search for tinfo for kconfig
7 years ago
Bryan Hundven 4b5f10df03 Merge pull request #264 from bhundven/uclibc-ng-update
uClibc-ng: Update to uClibc-ng-1.0.9
7 years ago
Bryan Hundven c9704c6683 uClibc-ng: Update to uClibc-ng-1.0.9
Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
7 years ago
Bryan Hundven 6c49a232a8 configure: Correctly search for tinfo for kconfig
I previously thought that tinfo could only be a link to libncurses in
modern ncurses installations. I was wrong.

Now we check for ncurses, then check for tinfo. If tinfo is a link to
ncurses, it is then not required to link against. But if libtinfo is
providing tgetent, and not libncurses, then we must add it to LIBS as
well.

Also, kconfig shouldn't hardcode -lncurses, it should use what is in
$(LIBS).

Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
7 years ago
Bryan Hundven 80e8c1135d Merge pull request #263 from bhundven/freebsd_patch_fix
configure: fix search for gpatch for FreeBSD
7 years ago
Bryan Hundven c9f3827b91 configure: fix search for gpatch for FreeBSD
We require GNU/patch, and when we install patch with `pkg`, crosstool-ng
still only finds the BSD/patch in /usr/bin/patch.

This commit fixes that and searches for gpatch first.

Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
7 years ago
Bryan Hundven 123dd3d683 Merge pull request #261 from bhundven/fix_modes
file modes: Fix file modes... again.
7 years ago
Bryan Hundven 7bca67bbb2 file modes: Fix file modes... again.
These files are sourced, not executed, and do not need to be executable.

Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
7 years ago
Bryan Hundven 42cd5b4bce Merge pull request #260 from bhundven/update_linux
linux: Update linux kernel versions
7 years ago
Bryan Hundven f72d5b5780 linux: Update linux kernel versions
This commit adds 4.3, and updates:

4.2.3   -> 4.2.6
4.1.10  -> 4.1.13
3.18.22 -> 3.18.24
3.14.54 -> 3.14.57
3.12.49 -> 3.12.50
3.10.90 -> 3.10.93
3.4.109 -> 3.4.110

Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
7 years ago
Bryan Hundven cd071e48be Merge pull request #259 from bhundven/mips64-samples
samples: Forgot to unmark mips64 samples as not experimental
7 years ago
Bryan Hundven 326a958f85 samples: Forgot to unmark mips64 samples as not experimental
As per 4be766254d, mips64 is not longer
experimental, and as such, the samples should not need it enabled.

Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
7 years ago
Bryan Hundven 465e5a8b9f Merge pull request #249 from stilor/expat_ncurses
Promote expat/ncurses to 'companion libs'
7 years ago
Bryan Hundven 38f5ad9005 Merge pull request #258 from stilor/check-samples
Update samples
7 years ago
Bryan Hundven 0a1a1ce51c Merge pull request #255 from stilor/savestate-logging
cosmetic: Do not log state saving/restoring as ERROR.
7 years ago
Alexey Neyman 6744ff68e4 Do not log state saving/restoring as ERROR.
These are not errors.

Signed-off-by: Alexey Neyman <stilor@att.net>
7 years ago
Alexey Neyman 2541bd0b11 Remove redundant configure options.
-mcpu= and -msoft-float are added due to ARCH_* flags, and correctly
passed down to libstdc build.

Signed-off-by: Alexey Neyman <stilor@att.net>
7 years ago
Alexey Neyman 57dc5e69d2 Remove --disable-libsanitizer.
It is now added automatically if CT_GCC_SANITIZER is not set - and that
option depends on !UCLIBC.

Signed-off-by: Alexey Neyman <stilor@att.net>
7 years ago
Alexey Neyman 10c0f278e9 Switch to using EV67 in alphaev67-*.
It does not make much sense to have alphaev67 example use -mcpu=ev67,
does it?

Signed-off-by: Alexey Neyman <stilor@att.net>
7 years ago
Alexey Neyman 379331986d More trivial sample updates.
Drop ARCH_ARCH/ARCH_TUNE where it is overridden by ARCH_CPU. Also, same
updates as in the previous batch for architectures with
!ARCH_EXCLUSIVE_WITH_CPU (i.e. where there is no need to drop
ARCH_CPU/ARCH_TUNE).

Signed-off-by: Alexey Neyman <stilor@att.net>
7 years ago
Alexey Neyman bb704f532a Allow --with-cpu/--with-tune for !arm.
The configure error mentioned in the commits that disable
--with-arch/--with-tune when --with-cpu is specified is specific to ARM
builds. For other architectures, it makes sense (hey, it even makes
sense for ARM - read 'info gcc'! - it is just a shortcoming of ARM
build, apparently).

Thus, add an arch setting ARCH_EXCLUSIVE_WITH_CPU (currently, set only
for ARM) that will trigger current behavior. Permit combinations of
--with-arch/cpu/tune for other arches.

Signed-off-by: Alexey Neyman <stilor@att.net>
7 years ago
Alexey Neyman 8a07253fa0 Use $* to simplify rules in samples.mk.
Signed-off-by: Alexey Neyman <stilor@att.net>
7 years ago
Alexey Neyman f7d6e53e2b Add update-samples target.
Same as check-samples, but actually updates the crosstool.config.

Signed-off-by: Alexey Neyman <stilor@att.net>
7 years ago
Bryan Hundven 6c0e31be34 Merge pull request #256 from bhundven/samples_update
Samples: Update samples
7 years ago
Bryan Hundven 5c0ce60a50 Merge pull request #257 from bhundven/libtinfo_check
configure: Check for libtinfo.so
7 years ago
Bryan Hundven ebb0df619e configure: Check for libtinfo.so
While usually distributed with ncurses, some distributions distribute
this library separately. Check to make sure it is installed.

This closes #241

Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
7 years ago
Bryan Hundven b54d55c843 Samples: Update samples
This commit updates samples to latest config/ changes.

This closes #114

Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
7 years ago
Alexey Neyman 847d1d8abf Update new companion libs with *_for_target.
Signed-off-by: Alexey Neyman <stilor@att.net>
7 years ago