-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #596 from ckormanyos/update_tools_docs
Update tools and docs and tool skeleton
- Loading branch information
Showing
22 changed files
with
386 additions
and
34 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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) |
Oops, something went wrong.