mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-13 19:25:38 +02:00
Patch for Sumit from HP to allow IA64 handling with Elf parser.
This commit is contained in:
parent
505d65f2fb
commit
bb06248085
1 changed files with 4 additions and 0 deletions
|
@ -91,6 +91,7 @@ public class Elf {
|
|||
public final static int EM_SPARCV9 = 43;
|
||||
public final static int EM_H8_300 = 46;
|
||||
public final static int EM_H8_300H = 47;
|
||||
public final static int EM_IA_64 = 50;
|
||||
public final static int EM_FR30 = 84; /* Fujitsu FR30 */
|
||||
public final static int EM_V850 = 87;
|
||||
public final static int EM_M32R = 88;
|
||||
|
@ -795,6 +796,9 @@ public class Elf {
|
|||
case Elf.ELFhdr.EM_EXCESS:
|
||||
attrib.cpu = "excess"; //$NON-NLS-1$
|
||||
break;
|
||||
case Elf.ELFhdr.EM_IA_64:
|
||||
attrib.cpu = "ia64"; //$NON-NLS-1$
|
||||
break;
|
||||
case Elf.ELFhdr.EM_NONE:
|
||||
default:
|
||||
attrib.cpu = "none"; //$NON-NLS-1$
|
||||
|
|
Loading…
Add table
Reference in a new issue