1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Added case for m68k cpu

This commit is contained in:
Alain Magloire 2003-07-25 01:57:41 +00:00
parent 4824b20cdc
commit 3648e5775a

View file

@ -669,6 +669,9 @@ public class Elf {
case Elf.ELFhdr.EM_SPARC: case Elf.ELFhdr.EM_SPARC:
attrib.cpu = "sparc"; attrib.cpu = "sparc";
break; break;
case Elf.ELFhdr.EM_68K:
attrib.cpu = "m68k";
break;
case Elf.ELFhdr.EM_NONE: case Elf.ELFhdr.EM_NONE:
default: default:
attrib.cpu = "none"; attrib.cpu = "none";