sdk-ng
sdk-ng copied to clipboard
Zephyr SDK (Toolchains, Development Tools)
This is a meta issue for the GNU Toolchain and Host Tools Upgrade for 2025H1. * crosstool-ng HEAD https://github.com/zephyrproject-rtos/sdk-ng/issues/788 * Binutils 2.43 * GCC 14.2 https://github.com/zephyrproject-rtos/sdk-ng/issues/740 * QEMU 9.1 https://github.com/zephyrproject-rtos/sdk-ng/issues/719...
Upgrade to the latest crosstool-ng to pull in the support for the latest toolchain components, including GCC 14 and Binutils 2.43.
Upgrade to [OpenOCD 0.12.0](https://github.com/openocd-org/openocd/releases/tag/v0.12.0).
This release of qemu has important bug fixes that perhaps will fix a bug in xtensa emulation of mmu.
I am sure I am missing something trivial, but here it goes: ``` $ cat hello.c #include int main() { printf("Hello world!\n"); } $ ~/zephyr-sdk-0.16.8/x86_64-zephyr-elf/bin/x86_64-zephyr-elf-gcc -v hello.c Using built-in specs....
## Notes for Revision 2 > [!NOTE] > This is the second revision of this change, the first being in https://github.com/zephyrproject-rtos/sdk-ng/pull/735. This revision adds a weak default implementations of C11...
minichlink is a self contained flasher, debug stub, and terminal for the CH32V003. If this looks good then I'll send the Makefile patch upstream.
There are cases that the stack will hold unmapped addresses in memory because of non returning functions. An example of this is TF-M and the common_sfn_thread function here: https://github.com/zephyrproject-rtos/trusted-firmware-m/blob/069455be098383bf96eab73e3ff8e0c66c60fa5a/secure_fw/partitions/lib/runtime/sfn_common_thread.c#L20C6-L20C23 The...