diff options
-rw-r--r-- | compiler/platform.nim | 3 | ||||
-rw-r--r-- | lib/system.nim | 3 | ||||
-rw-r--r-- | lib/system/platforms.nim | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/compiler/platform.nim b/compiler/platform.nim index 4dd5d8836..f52017af7 100644 --- a/compiler/platform.nim +++ b/compiler/platform.nim @@ -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), diff --git a/lib/system.nim b/lib/system.nim index 91495f31a..56b62d111 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -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) diff --git a/lib/system/platforms.nim b/lib/system/platforms.nim index 47a01d5fe..0472181f5 100644 --- a/lib/system/platforms.nim +++ b/lib/system/platforms.nim @@ -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 |