From: Steve Pfister Date: Fri, 30 Aug 2019 20:27:14 +0000 (-0400) Subject: Turned the compiler server off on Windows because Named Pipes aren't fully working... X-Git-Tag: submit/tizen/20210909.063632~10331^2~5^2~634 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9696c749f80a7ab39a151ca921f1f46c059bf220;p=platform%2Fupstream%2Fdotnet%2Fruntime.git 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 --- 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])