summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJohn Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>2019-06-03 08:20:00 +0200
committerAndreas Rumpf <rumpf_a@web.de>2019-06-03 08:20:00 +0200
commit5c5df61071412773fbf21adcf498a4942d23d92b (patch)
tree38005ae2c0cc12dc0eb67839b7af97de2b844206
parent4a485cb7ef67acd0f28f537df9551377ce4bb2b8 (diff)
downloadNim-5c5df61071412773fbf21adcf498a4942d23d92b.tar.gz
Additional platform definitions for sparc64 (#11387)
* lib/posix: Define SO_REUSEPORT for sparc64 as 0x0200 from kernel ABI

* lib/system: Add platform support for sparc64
-rw-r--r--lib/posix/posix_other.nim2
-rw-r--r--lib/system/platforms.nim2
2 files changed, 3 insertions, 1 deletions
diff --git a/lib/posix/posix_other.nim b/lib/posix/posix_other.nim
index 261550d96..04071b75f 100644
--- a/lib/posix/posix_other.nim
+++ b/lib/posix/posix_other.nim
@@ -546,7 +546,7 @@ else:
 when defined(linux) or defined(nimdoc):
   when defined(alpha) or defined(mips) or defined(mipsel) or
       defined(mips64) or defined(mips64el) or defined(parisc) or
-      defined(sparc) or defined(nimdoc):
+      defined(sparc) or defined(sparc64) or defined(nimdoc):
     const SO_REUSEPORT* = cint(0x0200)
       ## Multiple binding: load balancing on incoming TCP connections
       ## or UDP packets. (Requires Linux kernel > 3.9)
diff --git a/lib/system/platforms.nim b/lib/system/platforms.nim
index 80a21cd0b..1c35eeb0d 100644
--- a/lib/system/platforms.nim
+++ b/lib/system/platforms.nim
@@ -20,6 +20,7 @@ type
     powerpc64,                 ## 64 bit PowerPC
     powerpc64el,               ## Little Endian 64 bit PowerPC
     sparc,                     ## Sparc based processor
+    sparc64,                   ## 64-bit Sparc based processor
     ia64,                      ## Intel Itanium
     amd64,                     ## x86_64 (AMD64); 64 bit x86 compatible CPU
     mips,                      ## Mips based processor
@@ -76,6 +77,7 @@ const
                elif defined(powerpc64): CpuPlatform.powerpc64
                elif defined(powerpc64el): CpuPlatform.powerpc64el
                elif defined(sparc): CpuPlatform.sparc
+               elif defined(sparc64): CpuPlatform.sparc64
                elif defined(ia64): CpuPlatform.ia64
                elif defined(amd64): CpuPlatform.amd64
                elif defined(mips): CpuPlatform.mips