-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for Texas Instruments C6000 compiler.
- Loading branch information
Petr Machacek
committed
Oct 2, 2023
1 parent
bd3341f
commit 3c90c55
Showing
10 changed files
with
74 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Cross file tested on Texas Instruments C6000 compiler (bare metal DSP devices) | ||
# This file assumes that path to the Texas Instruments C6000 toolchain is added | ||
# to the environment(PATH) variable. | ||
|
||
[host_machine] | ||
system = 'bare metal/c6000' | ||
cpu_family = 'c6000' | ||
cpu = 'c64x' | ||
endian = 'little' | ||
|
||
[binaries] | ||
c = 'cl6x' | ||
cpp = 'cl6x' | ||
ar = 'ar6x' | ||
strip = 'strip6x' | ||
nm = 'nm6x' | ||
as = 'asm6x' | ||
|
||
[properties] | ||
needs_exe_wrapper = true | ||
has_function_printf = true | ||
bits = 32 |
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,4 @@ | ||
## Support for Texas Instruments C6000 C/C++ compiler | ||
|
||
Meson now supports TI C6000 C/C++ compiler used for bare metal C6000 cpu family. | ||
The example of cross file available in `cross/ti-c6000.txt`. |
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
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 |
---|---|---|
|
@@ -44,6 +44,7 @@ | |
'arm', | ||
'avr', | ||
'c2000', | ||
'c6000', | ||
'csky', | ||
'dspic', | ||
'e2k', | ||
|
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