-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update tools and docs and tool skeleton
- Loading branch information
1 parent
2fc4208
commit 103a9d4
Showing
18 changed files
with
357 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Update 2024-01-31 | ||
|
||
- Simply use tools from "UnxUtils" including | ||
echo, mkdir, rm, sed. See also: | ||
https://sourceforge.net/projects/unxutils | ||
|
||
- The make.exe stays the same as the one below. | ||
|
||
- Begin building cross-compilers on msys2 | ||
with a completely standalone, static MinGW | ||
(from nuwen). These do not require and DLLs. | ||
|
||
------------------------------------------------------- | ||
|
||
- The source of echo, mkdir, rm, sed is mingw64/msys2. | ||
- Their associated DLLs msys-2.0, msys-iconv-2 and | ||
msys-intl-8 are taken from mingw64/msys2. | ||
|
||
- GCC toolchains are in the "local" directory and | ||
its subdirectories. The DLL libwinpthread-1 | ||
is needed for these GCC ports. This DLL has | ||
also been taken from mingw64/msys2. | ||
|
||
- The make.exe program GNUmake 4.2.1 built for Windows | ||
with MSVC 14.2. See also the repository for this ar: | ||
https://github.com/ckormanyos/real-time-cpp-toolchains |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
real-time-cpp-toolchains - Individual Toolchains | ||
================== | ||
|
||
| GCC target | location | | ||
| ---------------------- | --------------------- | | ||
| `arm-none-eabi` | [ARM(R) GNU Toolchain](https://developer.arm.com/downloads/-/arm-gnu-toolchain-downloads) | | ||
| `avr` | [ckormanyos/avr-gcc-build](https://github.com/ckormanyos/avr-gcc-build) | | ||
| `riscv-none-elf` | [xpack-dev-tools/riscv-none-elf-gcc-xpack](https://github.com/xpack-dev-tools/riscv-none-elf-gcc-xpack) | | ||
| `rl78-unknown-elf` | [ckormanyos/gcc-rl78-unknown-elf](https://github.com/ckormanyos/gcc-rl78-unknown-elf) | | ||
| `rx-elf` | [ckormanyos/gcc-rx-elf](https://github.com/ckormanyos/gcc-rx-elf) | | ||
| `v850-unknown-elf` | [ckormanyos/gcc-v850-unknown-elf](https://github.com/ckormanyos/gcc-v850-unknown-elf) | | ||
| `x86_64-w64-mingw32` | [nuwen distro](https://nuwen.net/mingw.html) | | ||
| `xtensa-esp32-elf` | [espressif/crosstool-NG](https://github.com/espressif/crosstool-NG) | |
5 changes: 5 additions & 0 deletions
5
ref_app/tools/Util/msys64/usr/local/gcc-13.2.0-rl78-unknown-elf/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
`gcc-rl78-unknown-elf` | ||
================== | ||
|
||
See also | ||
[ckormanyos/gcc-rl78-unknown-elf](https://github.com/ckormanyos/gcc-rl78-unknown-elf) |
5 changes: 5 additions & 0 deletions
5
ref_app/tools/Util/msys64/usr/local/gcc-13.2.0-rx-elf/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
`gcc-rx-elf` | ||
================== | ||
|
||
See also | ||
[ckormanyos/gcc-rx-elf](https://github.com/ckormanyos/gcc-rx-elf) |
5 changes: 5 additions & 0 deletions
5
ref_app/tools/Util/msys64/usr/local/gcc-13.2.0-v850-unknown-elf/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
`gcc-v850-unknown-elf` | ||
================== | ||
|
||
See also | ||
[ckormanyos/gcc-v850-unknown-elf](https://github.com/ckormanyos/gcc-v850-unknown-elf) |
5 changes: 5 additions & 0 deletions
5
ref_app/tools/Util/msys64/usr/local/gcc-13.2.0-x86_64-w64-mingw32/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
`gcc-x86_64-w64-mingw32` | ||
================== | ||
|
||
See also | ||
[nuwen distro](https://nuwen.net/mingw.html) |
271 changes: 271 additions & 0 deletions
271
ref_app/tools/Util/msys64/usr/local/gcc-13.2.0-x86_64-w64-mingw32/README_STL.txt
Large diffs are not rendered by default.
Oops, something went wrong.
7 changes: 7 additions & 0 deletions
7
ref_app/tools/Util/msys64/usr/local/gcc-13.2.0-xtensa-esp32-elf/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
`gcc-xtensa-esp32-elf` | ||
================== | ||
|
||
See also the releases at | ||
[espressif/crosstool-NG](https://github.com/espressif/crosstool-NG), | ||
for example | ||
[release 13.2](https://github.com/espressif/crosstool-NG/releases/tag/esp-13.2.0_20230928) |
5 changes: 5 additions & 0 deletions
5
ref_app/tools/Util/msys64/usr/local/gcc-13.3.1-arm-none-eabi/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
`gcc-arm-none-eabi` | ||
================== | ||
|
||
See also the toolchains at | ||
[ARM(R) GNU Toolchain](https://developer.arm.com/downloads/-/arm-gnu-toolchain-downloads) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
`avr-gcc` | ||
================== | ||
|
||
See also | ||
[ckormanyos/avr-gcc-build](https://github.com/ckormanyos/avr-gcc-build) |
5 changes: 5 additions & 0 deletions
5
ref_app/tools/Util/msys64/usr/local/gcc-14.2.0-riscv-none-elf/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
`riscv-none-elf` | ||
================== | ||
|
||
See also | ||
[xpack-dev-tools/riscv-none-elf-gcc-xpack](https://github.com/xpack-dev-tools/riscv-none-elf-gcc-xpack) |