diff options
author | James Cowgill <jcowgill@users.noreply.github.com> | 2017-08-03 17:37:02 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-08-03 18:37:02 +0200 |
commit | fed1b0a0774e6b0b301fbe11cea70dbd0eac2c19 (patch) | |
tree | 961d159c07bd0be7f5dd66d4d386189ee379d007 /lib/posix/posix_other.nim | |
parent | 57edf619fe4d3e826c9b8f151b0f639487ede81b (diff) | |
download | Nim-fed1b0a0774e6b0b301fbe11cea70dbd0eac2c19.tar.gz |
Add mips64 and mips64el CPU platforms (#5866)
Diffstat (limited to 'lib/posix/posix_other.nim')
-rw-r--r-- | lib/posix/posix_other.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/posix/posix_other.nim b/lib/posix/posix_other.nim index 1d50f2bac..9629b399e 100644 --- a/lib/posix/posix_other.nim +++ b/lib/posix/posix_other.nim @@ -572,7 +572,8 @@ else: MAP_POPULATE*: cint = 0 when defined(linux) or defined(nimdoc): - when defined(alpha) or defined(mips) or defined(parisc) or + when defined(alpha) or defined(mips) or defined(mipsel) or + defined(mips64) or defined(mips64el) or defined(parisc) or defined(sparc) or defined(nimdoc): const SO_REUSEPORT* = cint(0x0200) ## Multiple binding: load balancing on incoming TCP connections |