From 075cae5147bdca011841a9ebaf166636ab3e410f Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 26 Aug 2016 08:57:40 -0400 Subject: Do not build libuv on SPARC Some work may be needed to port to SPARC with Solaris and Linux. --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9176049..65876d5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -484,6 +484,9 @@ int main(void) { return 0; } elseif(CYGWIN) # libuv does not support Cygwin set(CMAKE_USE_LIBUV 0) + elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "sparc") + # Disable until it can be ported. + set(CMAKE_USE_LIBUV 0) endif() endif() if(CMAKE_USE_LIBUV) -- cgit v0.12