summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2018-01-25Merge pull request #900 from stilor/issue-897Alexey Neyman1-2/+6
Only decorate TARGET_ARCH if using specific CPU
2018-01-23Merge pull request #899 from franzflasch/masterAlexey Neyman3-0/+11
riscv: Add ARCH_SUPPORTS_WITH_ABI and ARCH_SUPPORTS_WITH_ARCH
2018-01-22Added vendor string for riscv32-hifive1-elfFranz Flasch2-2/+2
2018-01-22Added sample for riscv-hifive1 boardFranz Flasch2-0/+9
Signed-off-by: Franz Flasch <ffl@mission-embedded.com>
2018-01-22Only decorate TARGET_ARCH if using specific CPUAlexey Neyman1-2/+6
Otherwise, binutils don't recognize it as a valid target - even though GCC does. Fixes #897. Signed-off-by: Alexey Neyman <stilor@att.net>
2018-01-20Merge pull request #895 from upsuper/patch-1Alexey Neyman1-1/+1
Use /usr/bin/env to locate bash
2018-01-19Add ARCH_SUPPORTS_WITH_ABI and ARCH_SUPPORTS_WITH_ARCH for riscv targetsFranz Flasch1-0/+2
Signed-off-by: Franz Flasch <franz.flasch@gmx.at>
2018-01-06Use /usr/bin/env to locate bashXidorn Quan1-1/+1
On some systems (e.g. macOS), the bash provided by the system at `/bin/bash` is not new enough for the bootstrap script, while users may install a bash instance elsewhere. In that case, `/usr/bin/env` can get the bash in the current environment.
2017-12-18Merge pull request #885 from ksergeyv/masterAlexey Neyman1-10/+12
Fix gdb build flags forming
2017-12-17Fix gdb build flags formingSergey Korolev1-10/+12
Build flags are scalar variables. Signed-off-by: Sergey Korolev <s.korolev@ndmsystems.com>
2017-12-17Merge pull request #882 from ksergeyv/gdb-linkAlexey Neyman1-80/+106
Fix variables passing to gdb configure scripts
2017-12-17Merge pull request #884 from stilor/todo-updateAlexey Neyman1-9/+9
Merge a local TODO list
2017-12-17Merge a local TODO listAlexey Neyman1-9/+9
Signed-off-by: Alexey Neyman <stilor@att.net>
2017-12-16Merge pull request #881 from ksergeyv/masterAlexey Neyman1-0/+4
Do not build a native gdbserver automatically
2017-12-14Fix variables passing to gdb configure scriptsSergey Korolev1-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>
2017-12-13Do not build a native gdbserver automaticallySergey Korolev1-0/+4
Signed-off-by: Sergey Korolev <s.korolev@ndmsystems.com>
2017-12-05Merge pull request #877 from stilor/uclibc-2Alexey Neyman2-0/+962
More uClibc fixes from upstream
2017-12-05More uClibc fixes from upstreamAlexey Neyman2-0/+962
Signed-off-by: Alexey Neyman <stilor@att.net>
2017-12-05Merge pull request #876 from stilor/uclibc-link-failAlexey Neyman2-0/+49
Uclibc link fail
2017-12-05Add a summary of the operationsAlexey Neyman1-0/+6
Signed-off-by: Alexey Neyman <stilor@att.net>
2017-12-05Pick up linking fix from upstreamAlexey Neyman1-0/+43
Signed-off-by: Alexey Neyman <stilor@att.net>
2017-12-03Merge pull request #875 from stilor/updatesAlexey Neyman135-808/+148
Bunch of upgrades: android-ndk, expat, gcc-linaro, ...
2017-12-03Bunch of upgrades: android-ndk, expat, gcc-linaro, ...Alexey Neyman135-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>
2017-12-02Merge pull request #874 from stilor/renumber-update-patchesAlexey Neyman1882-173033/+171996
Renumber & update patches
2017-12-02Run all patches through renumbering and updateAlexey Neyman1878-172521/+171688
Signed-off-by: Alexey Neyman <stilor@att.net>
2017-12-02Retire old scripts for handling patchesAlexey Neyman3-264/+0
Also rename test-packages -> manage-packages, it is no longer just testing. Signed-off-by: Alexey Neyman <stilor@att.net>
2017-12-02Add an ability to refresh/renumber patchesAlexey Neyman1-3/+63
Signed-off-by: Alexey Neyman <stilor@att.net>
2017-11-30Merge pull request #869 from stilor/show-samplesAlexey Neyman61-485/+352
Support custom packages in show-config
2017-11-30Make comp.libs use generated templates, tooAlexey Neyman54-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>
2017-11-29Merge pull request #871 from ksergeyv/gcc-patchesAlexey Neyman10-70/+68
fix offsets of gcc 7.2.0 patches
2017-11-27gcc 7.2.0: fix 977-crystax.patch offsetsSergey Korolev1-2/+2
2017-11-27gcc 7.2.0: fix 975-crystax.patch offsetsSergey Korolev1-1/+1
2017-11-27gcc 7.2.0: fix 973-crystax.patch offsetsSergey Korolev1-1/+1
2017-11-27gcc 7.2.0: fix 972-crystax.patch offsetsSergey Korolev1-18/+18
2017-11-27gcc 7.2.0: fix 970-crystax.patch offsetsSergey Korolev1-35/+33
2017-11-27gcc 7.2.0: fix 952-bionic-errno.patch offsetsSergey Korolev1-1/+1
2017-11-27gcc 7.2.0: fix 891-fix-m68k-uclinux.patch offsetsSergey Korolev1-1/+1
2017-11-27gcc 7.2.0: fix 860-cilk-wchar.patch offsetsSergey Korolev1-4/+4
2017-11-27gcc 7.2.0: fix 810-arm-softfloat-libgcc.patch offsetsSergey Korolev1-1/+1
2017-11-27gcc 7.2.0: fix ↵Sergey Korolev1-6/+6
370-gcc-plugin-Win-Dont-need-undefined-extern-var-refs-nor-fpic.patch offsets
2017-11-20Align script names with the ct-ng commandsAlexey Neyman4-6/+6
Signed-off-by: Alexey Neyman <stilor@att.net>
2017-11-20showConfig.sh no longer has anything substitutedAlexey Neyman3-4/+1
Signed-off-by: Alexey Neyman <stilor@att.net>
2017-11-20Retire wiki-printerAlexey Neyman2-139/+39
It is not used anymore and is currently broken. Signed-off-by: Alexey Neyman <stilor@att.net>
2017-11-20A few fixes for showSamplesAlexey Neyman5-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>
2017-11-20scripts/showSamples.sh: support custom package versionsSergey Korolev1-31/+40
Signed-off-by: Sergey Korolev <s.korolev@ndmsystems.com>
2017-11-20scripts/functions: add CT_GetPkgBuildVersionSergey Korolev1-0/+22
This allows to get a configured custom version of a package. Signed-off-by: Sergey Korolev <s.korolev@ndmsystems.com>
2017-11-20Merge pull request #868 from frantony/riscvAlexey Neyman4-0/+23
add RISC-V architecture support
2017-11-19add a bare metal RISC-V sampleAntony Pavlov2-0/+8
Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
2017-11-19add RISC-V architecture supportAntony Pavlov2-0/+15
Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
2017-11-12Merge pull request #863 from ksergeyv/masterAlexey Neyman1-6/+5
showSamples.sh: update outdated variables