aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * Fix gdb build flags formingSergey Korolev2017-12-181-10/+12
|/ | | | | | Build flags are scalar variables. Signed-off-by: Sergey Korolev <s.korolev@ndmsystems.com>
* Merge pull request #882 from ksergeyv/gdb-linkAlexey Neyman2017-12-171-80/+106
|\ | | | | Fix variables passing to gdb configure scripts
| * Fix variables passing to gdb configure scriptsSergey Korolev2017-12-141-80/+106
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These changes mainly fix static linking errors when building static native gdb and gdbserver (tested with gcc 7.2.0 + uClibc-ng 1.0.27 + binutils 2.29.1 for MIPS): [ALL ] .../lib/libstdc++.a(eh_throw.o): In function `__cxa_throw': [ALL ] (.text.__cxa_throw+0x64): undefined reference to `_Unwind_RaiseException' [ALL ] (.text.__cxa_throw+0x6c): undefined reference to `_Unwind_RaiseException' [ALL ] .../lib/libstdc++.a(eh_throw.o): In function `__cxa_rethrow': [ALL ] (.text.__cxa_rethrow+0x78): undefined reference to `_Unwind_Resume_or_Rethrow' [ALL ] (.text.__cxa_rethrow+0x80): undefined reference to `_Unwind_Resume_or_Rethrow' ... The problem is in mixing of CPP, CC, CXX, and LD with CPPFLAGS, CFLAGS, CXXFLAGS, and LDFLAGS before passing to configure scripts. gcc is sensitive to argument order and the scripts are normally responsible to combine the variables in a proper way. Signed-off-by: Sergey Korolev <s.korolev@ndmsystems.com>
* | Merge pull request #884 from stilor/todo-updateAlexey Neyman2017-12-171-9/+9
|\ \ | | | | | | Merge a local TODO list
| * | Merge a local TODO listAlexey Neyman2017-12-171-9/+9
|/ / | | | | | | Signed-off-by: Alexey Neyman <stilor@att.net>
* | Merge pull request #881 from ksergeyv/masterAlexey Neyman2017-12-161-0/+4
|\ \ | |/ |/| Do not build a native gdbserver automatically
| * Do not build a native gdbserver automaticallySergey Korolev2017-12-141-0/+4
|/ | | | Signed-off-by: Sergey Korolev <s.korolev@ndmsystems.com>
* Merge pull request #877 from stilor/uclibc-2Alexey Neyman2017-12-052-0/+962
|\ | | | | More uClibc fixes from upstream
| * More uClibc fixes from upstreamAlexey Neyman2017-12-052-0/+962
|/ | | | Signed-off-by: Alexey Neyman <stilor@att.net>
* Merge pull request #876 from stilor/uclibc-link-failAlexey Neyman2017-12-052-0/+49
|\ | | | | Uclibc link fail
| * Add a summary of the operationsAlexey Neyman2017-12-051-0/+6
| | | | | | | | Signed-off-by: Alexey Neyman <stilor@att.net>
| * Pick up linking fix from upstreamAlexey Neyman2017-12-051-0/+43
|/ | | | Signed-off-by: Alexey Neyman <stilor@att.net>
* Merge pull request #875 from stilor/updatesAlexey Neyman2017-12-03135-808/+148
|\ | | | | Bunch of upgrades: android-ndk, expat, gcc-linaro, ...
| * Bunch of upgrades: android-ndk, expat, gcc-linaro, ...Alexey Neyman2017-12-03135-808/+148
|/ | | | | | | | ... mingw-w64, musl, strace, uClibc-ng, linux. Also, regenerate chksum's after @bhundven's upgrade of binutils. Signed-off-by: Alexey Neyman <stilor@att.net>
* Merge pull request #874 from stilor/renumber-update-patchesAlexey Neyman2017-12-021143-18266/+17229
|\ | | | | Renumber & update patches
| * Run all patches through renumbering and updateAlexey Neyman2017-12-021140-17999/+17166
| | | | | | | | Signed-off-by: Alexey Neyman <stilor@att.net>
| * Retire old scripts for handling patchesAlexey Neyman2017-12-023-264/+0
| | | | | | | | | | | | Also rename test-packages -> manage-packages, it is no longer just testing. Signed-off-by: Alexey Neyman <stilor@att.net>
| * Add an ability to refresh/renumber patchesAlexey Neyman2017-12-021-3/+63
|/ | | | Signed-off-by: Alexey Neyman <stilor@att.net>
* Merge pull request #869 from stilor/show-samplesAlexey Neyman2017-11-2961-485/+352
|\ | | | | Support custom packages in show-config
| * Make comp.libs use generated templates, tooAlexey Neyman2017-11-2954-272/+236
| | | | | | | | | | | | | | | | This allows us to include the component-to-package relation in the generated kconfig files and make use of that information in the show-config.sh script. Signed-off-by: Alexey Neyman <stilor@att.net>
| * Align script names with the ct-ng commandsAlexey Neyman2017-11-194-6/+6
| | | | | | | | Signed-off-by: Alexey Neyman <stilor@att.net>
| * showConfig.sh no longer has anything substitutedAlexey Neyman2017-11-193-4/+1
| | | | | | | | Signed-off-by: Alexey Neyman <stilor@att.net>
| * Retire wiki-printerAlexey Neyman2017-11-192-139/+39
| | | | | | | | | | | | It is not used anymore and is currently broken. Signed-off-by: Alexey Neyman <stilor@att.net>
| * A few fixes for showSamplesAlexey Neyman2017-11-195-86/+61
| | | | | | | | | | | | | | | | - Use fork's name, not the master package name - Allow to use a choice selector when printing a package - Consider complibs always present (they are, gcc does require gmp/...) Signed-off-by: Alexey Neyman <stilor@att.net>
| * scripts/showSamples.sh: support custom package versionsSergey Korolev2017-11-191-31/+40
| | | | | | | | Signed-off-by: Sergey Korolev <s.korolev@ndmsystems.com>
| * scripts/functions: add CT_GetPkgBuildVersionSergey Korolev2017-11-191-0/+22
| | | | | | | | | | | | This allows to get a configured custom version of a package. Signed-off-by: Sergey Korolev <s.korolev@ndmsystems.com>
* | Merge pull request #871 from ksergeyv/gcc-patchesAlexey Neyman2017-11-2810-70/+68
|\ \ | |/ |/| fix offsets of gcc 7.2.0 patches
| * gcc 7.2.0: fix 977-crystax.patch offsetsSergey Korolev2017-11-271-2/+2
| |
| * gcc 7.2.0: fix 975-crystax.patch offsetsSergey Korolev2017-11-271-1/+1
| |
| * gcc 7.2.0: fix 973-crystax.patch offsetsSergey Korolev2017-11-271-1/+1
| |
| * gcc 7.2.0: fix 972-crystax.patch offsetsSergey Korolev2017-11-271-18/+18
| |
| * gcc 7.2.0: fix 970-crystax.patch offsetsSergey Korolev2017-11-271-35/+33
| |
| * gcc 7.2.0: fix 952-bionic-errno.patch offsetsSergey Korolev2017-11-271-1/+1
| |
| * gcc 7.2.0: fix 891-fix-m68k-uclinux.patch offsetsSergey Korolev2017-11-271-1/+1
| |
| * gcc 7.2.0: fix 860-cilk-wchar.patch offsetsSergey Korolev2017-11-271-4/+4
| |
| * gcc 7.2.0: fix 810-arm-softfloat-libgcc.patch offsetsSergey Korolev2017-11-271-1/+1
| |
| * gcc 7.2.0: fix ↵Sergey Korolev2017-11-271-6/+6
| | | | | | | | 370-gcc-plugin-Win-Dont-need-undefined-extern-var-refs-nor-fpic.patch offsets
* | Merge pull request #868 from frantony/riscvAlexey Neyman2017-11-194-0/+23
|\ \ | | | | | | add RISC-V architecture support
| * | add a bare metal RISC-V sampleAntony Pavlov2017-11-192-0/+8
| | | | | | | | | | | | Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
| * | add RISC-V architecture supportAntony Pavlov2017-11-192-0/+15
|/ / | | | | | | Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
* | Merge pull request #863 from ksergeyv/masterAlexey Neyman2017-11-121-6/+5
|\| | | | | showSamples.sh: update outdated variables
| * showSamples.sh: fix description of a selected tool setSergey Korolev2017-11-121-5/+4
| | | | | | | | Signed-off-by: Sergey Korolev <s.korolev@ndmsystems.com>
| * showSamples.sh: fix uClibc-ng detectionSergey Korolev2017-11-121-1/+1
| | | | | | | | Signed-off-by: Sergey Korolev <s.korolev@ndmsystems.com>
* | Merge pull request #862 from ksergeyv/masterAlexey Neyman2017-11-111-2/+2
|\| | | | | use ${CT_${cc}_VERSION} to show a compiler version
| * use ${CT_${cc}_VERSION} to show a compiler versionSergey Korolev2017-11-111-2/+2
|/ | | | Signed-off-by: Sergey Korolev <s.korolev@ndmsystems.com>
* Merge pull request #855 from stilor/issue-770Alexey Neyman2017-11-041-39/+228
|\ | | | | Include Makefile.in in gettext 0.19.8.1 patch
| * Include Makefile.in in gettext 0.19.8.1 patchAlexey Neyman2017-11-041-39/+228
|/ | | | | | | | Otherwise, make tries to rebuild it and fails. Fixes #770. Signed-off-by: Alexey Neyman <stilor@att.net>
* Merge pull request #850 from stilor/upgradesAlexey Neyman2017-10-2377-709/+76
|\ | | | | Upgrades: gcc 5.5, gdb 8.0.1, musl 1.1.17, Linux
| * Upgrades: gcc 5.5, gdb 8.0.1, musl 1.1.17, LinuxAlexey Neyman2017-10-2377-709/+76
|/ | | | Signed-off-by: Alexey Neyman <stilor@att.net>
* Merge pull request #847 from stilor/masterAlexey Neyman2017-10-201-1/+5
|\ | | | | When handling overlay, move rather than symlink