From 9696c749f80a7ab39a151ca921f1f46c059bf220 Mon Sep 17 00:00:00 2001 From: Steve Pfister Date: Fri, 30 Aug 2019 16:27:14 -0400 Subject: [PATCH] Turned the compiler server off on Windows because Named Pipes aren't fully working (mono/mono#16552) * Turned the compiler server off on Windows because Named Pipes aren't fully working * Added win32 to the CS is turned off message Commit migrated from https://github.com/mono/mono/commit/dbce6ac447dcb9443f50da9fe50caed50adc1d06 --- src/mono/configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mono/configure.ac b/src/mono/configure.ac index 8ab11e1..8eb74cd 100644 --- a/src/mono/configure.ac +++ b/src/mono/configure.ac @@ -6794,8 +6794,8 @@ AC_MSG_RESULT($enable_compiler_server) if test x$enable_compiler_server = xyes; then if test x$force_enable_compiler_server = xyes; then AC_MSG_WARN([forcing compiler server to stay enabled]) - elif test x$host_darwin = xyes; then - AC_MSG_WARN([compiler server temporarily disabled on darwin]) + elif test x$host_darwin = xyes || test x$host_win32 = xyes; then + AC_MSG_WARN([compiler server temporarily disabled on darwin and win32]) enable_compiler_server=no; elif test x$csc_compiler = xmcs; then AC_MSG_WARN([mcs does not support the compiler server]) -- 2.7.4