-
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
Showing
10 changed files
with
72 additions
and
16 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 = '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 the TI C6000 C/C++ compiler use for the C6000 cpu family. | ||
The example cross file is 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 |
---|---|---|
|
@@ -34,6 +34,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