Merge pull request #3163 from def-/mipsel

Add Mipsel CPU support (untested)
This commit is contained in:
Dominik Picheta
2015-07-31 22:39:07 +01:00
3 changed files with 6 additions and 2 deletions

View File

@@ -158,7 +158,7 @@ type
TSystemCPU* = enum # Also add CPU for in initialization section and
# alias conditionals to condsyms (end of module).
cpuNone, cpuI386, cpuM68k, cpuAlpha, cpuPowerpc, cpuPowerpc64,
cpuSparc, cpuVm, cpuIa64, cpuAmd64, cpuMips, cpuArm,
cpuSparc, cpuVm, cpuIa64, cpuAmd64, cpuMips, cpuMipsel, cpuArm,
cpuJS, cpuNimrodVM, cpuAVR
type
@@ -180,6 +180,7 @@ const
(name: "ia64", intSize: 64, endian: littleEndian, floatSize: 64, bit: 64),
(name: "amd64", intSize: 64, endian: littleEndian, floatSize: 64, bit: 64),
(name: "mips", intSize: 32, endian: bigEndian, floatSize: 64, bit: 32),
(name: "mipsel", intSize: 32, endian: littleEndian, floatSize: 64, bit: 32),
(name: "arm", intSize: 32, endian: littleEndian, floatSize: 64, bit: 32),
(name: "js", intSize: 32, endian: bigEndian,floatSize: 64,bit: 32),
(name: "nimrodvm", intSize: 32, endian: bigEndian, floatSize: 64, bit: 32),

View File

@@ -1150,7 +1150,8 @@ const
hostCPU* {.magic: "HostCPU".}: string = ""
## a string that describes the host CPU. Possible values:
## "i386", "alpha", "powerpc", "powerpc64", "sparc", "amd64", "mips", "arm".
## "i386", "alpha", "powerpc", "powerpc64", "sparc", "amd64", "mips",
## "mipsel", "arm".
seqShallowFlag = low(int)

View File

@@ -22,6 +22,7 @@ type
ia64, ## Intel Itanium
amd64, ## x86_64 (AMD64); 64 bit x86 compatible CPU
mips, ## Mips based processor
mipsel, ## Little Endian Mips based processor
arm, ## ARM based processor
vm, ## Some Virtual machine: Nim's VM or JavaScript
avr ## AVR based processor
@@ -67,6 +68,7 @@ const
elif defined(ia64): CpuPlatform.ia64
elif defined(amd64): CpuPlatform.amd64
elif defined(mips): CpuPlatform.mips
elif defined(mipsel): CpuPlatform.mipsel
elif defined(arm): CpuPlatform.arm
elif defined(vm): CpuPlatform.vm
elif defined(avr): CpuPlatform.avr