1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

2004-11-25 Alain Magloire

Fix PR 79076
	* utils/org/eclipse/cdt/utils/elf/Elf.java
This commit is contained in:
Alain Magloire 2004-11-25 21:38:38 +00:00
parent 2bde303bab
commit bdbb88046a
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2004-11-25 Alain Magloire
Fix PR 79076
* utils/org/eclipse/cdt/utils/elf/Elf.java
2004-11-16 Alain Magloire 2004-11-16 Alain Magloire
FIX for 27663 FIX for 27663
* utils/org/eclipse/cdt/utils/pty/PTY.java * utils/org/eclipse/cdt/utils/pty/PTY.java

View file

@ -103,6 +103,7 @@ public class Elf {
public final static int EM_H8_300 = 46; public final static int EM_H8_300 = 46;
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_ST100 = 60;
public final static int EM_AVR = 83; public final static int EM_AVR = 83;
public final static int EM_FR30 = 84; /* Fujitsu FR30 */ public final static int EM_FR30 = 84; /* Fujitsu FR30 */
public final static int EM_V850 = 87; public final static int EM_V850 = 87;
@ -801,6 +802,9 @@ public class Elf {
case Elf.ELFhdr.EM_MSP430 : case Elf.ELFhdr.EM_MSP430 :
attrib.cpu = "msp430"; //$NON-NLS-1$ attrib.cpu = "msp430"; //$NON-NLS-1$
break; break;
case Elf.ELFhdr.EM_ST100:
attrib.cpu = "st100"; //$NON-NLS-1$
break;
case Elf.ELFhdr.EM_NONE : case Elf.ELFhdr.EM_NONE :
default : default :
attrib.cpu = "none"; //$NON-NLS-1$ attrib.cpu = "none"; //$NON-NLS-1$