diff options
author | def <dennis@felsin9.de> | 2015-07-31 23:16:52 +0200 |
---|---|---|
committer | def <dennis@felsin9.de> | 2015-07-31 23:16:52 +0200 |
commit | 70c4176105e08127da444a6419e1ad6d4c725dd7 (patch) | |
tree | 8d9cef319cbbd288dd173cb3e16ebb0baaa72eeb /compiler/platform.nim | |
parent | c9084585dc507267d48c5f79674847da7fc4a6bb (diff) | |
download | Nim-70c4176105e08127da444a6419e1ad6d4c725dd7.tar.gz |
Add Mipsel CPU support (untested)
Diffstat (limited to 'compiler/platform.nim')
-rw-r--r-- | compiler/platform.nim | 3 |
1 files changed, 2 insertions, 1 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), |