mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-01 06:05:24 +02:00
Add Freescale StarCore machine recognition (173784))
This commit is contained in:
parent
65db071866
commit
7a0a8bd1f8
1 changed files with 4 additions and 0 deletions
|
@ -109,6 +109,7 @@ public class Elf {
|
||||||
public final static int EM_H8_300H = 47;
|
public final static int EM_H8_300H = 47;
|
||||||
public final static int EM_IA_64 = 50;
|
public final static int EM_IA_64 = 50;
|
||||||
public final static int EM_COLDFIRE = 52;
|
public final static int EM_COLDFIRE = 52;
|
||||||
|
public final static int EM_STARCORE = 58;
|
||||||
public final static int EM_X86_64 = 62;
|
public final static int EM_X86_64 = 62;
|
||||||
public final static int EM_ST100 = 60;
|
public final static int EM_ST100 = 60;
|
||||||
public final static int EM_AVR = 83;
|
public final static int EM_AVR = 83;
|
||||||
|
@ -846,6 +847,9 @@ public class Elf {
|
||||||
case Elf.ELFhdr.EM_M16C:
|
case Elf.ELFhdr.EM_M16C:
|
||||||
attrib.cpu = "M16C"; //$NON-NLS-1$
|
attrib.cpu = "M16C"; //$NON-NLS-1$
|
||||||
break;
|
break;
|
||||||
|
case Elf.ELFhdr.EM_STARCORE:
|
||||||
|
attrib.cpu = "StarCore"; //$NON-NLS-1$
|
||||||
|
break;
|
||||||
case Elf.ELFhdr.EM_BLACKFIN :
|
case Elf.ELFhdr.EM_BLACKFIN :
|
||||||
attrib.cpu = "bfin"; //$NON-NLS-1$
|
attrib.cpu = "bfin"; //$NON-NLS-1$
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Reference in a new issue