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:
parent
4824b20cdc
commit
3648e5775a
1 changed files with 3 additions and 0 deletions
|
@ -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";
|
||||||
|
|
Loading…
Add table
Reference in a new issue