Added enhanced pic8 platform (#2910)
This commit is contained in:
parent
09140f4655
commit
5d9b22635a
|
@ -1130,6 +1130,10 @@ void CmdLineParser::printHelp()
|
||||||
" 8 bit AVR microcontrollers\n"
|
" 8 bit AVR microcontrollers\n"
|
||||||
" * pic8\n"
|
" * pic8\n"
|
||||||
" 8 bit PIC microcontrollers\n"
|
" 8 bit PIC microcontrollers\n"
|
||||||
|
" Baseline and mid-range architectures\n"
|
||||||
|
" * pic8-enhanced\n"
|
||||||
|
" 8 bit PIC microcontrollers\n"
|
||||||
|
" Enhanced mid-range and high end (PIC18) architectures\n"
|
||||||
" * pic16\n"
|
" * pic16\n"
|
||||||
" 16 bit PIC microcontrollers\n"
|
" 16 bit PIC microcontrollers\n"
|
||||||
" * mips32\n"
|
" * mips32\n"
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
<platform>
|
||||||
|
<char_bit>8</char_bit>
|
||||||
|
<default-sign>unsigned</default-sign>
|
||||||
|
<sizeof>
|
||||||
|
<bool>1</bool>
|
||||||
|
<short>2</short>
|
||||||
|
<int>2</int>
|
||||||
|
<long>4</long>
|
||||||
|
<long-long>8</long-long>
|
||||||
|
<float>4</float>
|
||||||
|
<double>4</double>
|
||||||
|
<long-double>4</long-double>
|
||||||
|
<pointer>2</pointer>
|
||||||
|
<size_t>2</size_t>
|
||||||
|
<wchar_t>2</wchar_t>
|
||||||
|
</sizeof>
|
||||||
|
</platform>
|
|
@ -133,6 +133,7 @@
|
||||||
<File Id='arm64wchar_t4.xml' Name='arm64-wchar_t4.xml' Source='$(var.PtfsDir)\arm64-wchar_t4.xml' />
|
<File Id='arm64wchar_t4.xml' Name='arm64-wchar_t4.xml' Source='$(var.PtfsDir)\arm64-wchar_t4.xml' />
|
||||||
<File Id='avr8.xml' Name='avr8.xml' Source='$(var.PtfsDir)\avr8.xml' />
|
<File Id='avr8.xml' Name='avr8.xml' Source='$(var.PtfsDir)\avr8.xml' />
|
||||||
<File Id='pic8.xml' Name='pic8.xml' Source='$(var.PtfsDir)\pic8.xml' />
|
<File Id='pic8.xml' Name='pic8.xml' Source='$(var.PtfsDir)\pic8.xml' />
|
||||||
|
<File Id='pic8-enhanced.xml' Name='pic8-enhanced.xml' Source='$(var.PtfsDir)\pic8-enhanced.xml' />
|
||||||
<File Id='pic16.xml' Name='pic16.xml' Source='$(var.PtfsDir)\pic16.xml' />
|
<File Id='pic16.xml' Name='pic16.xml' Source='$(var.PtfsDir)\pic16.xml' />
|
||||||
<File Id='mips32.xml' Name='mips32.xml' Source='$(var.PtfsDir)\mips32.xml' />
|
<File Id='mips32.xml' Name='mips32.xml' Source='$(var.PtfsDir)\mips32.xml' />
|
||||||
<File Id='cray_sv1.xml' Name='cray_sv1.xml' Source='$(var.PtfsDir)\cray_sv1.xml' />
|
<File Id='cray_sv1.xml' Name='cray_sv1.xml' Source='$(var.PtfsDir)\cray_sv1.xml' />
|
||||||
|
|
Loading…
Reference in New Issue