Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/msvc
diff options
context:
space:
mode:
authorKatelyn Gadd <kg@luminance.org>2019-05-29 09:54:44 +0300
committerGitHub <noreply@github.com>2019-05-29 09:54:44 +0300
commitadd2a211b3abd49e33c1bf6496833687d80ec707 (patch)
treee9a407e9030ccf009a07002af27f3b71facf3770 /msvc
parentedd6c013b0b9e28f85eb9b8a29e6fb7055764825 (diff)
Infrastructure support / fixes for making compiler server the default (#14279)
* Fix enabling the compiler server using autogen, and force it off if mcs is being used * autogen updates * Formatting fixes * Fix vbcs getting turned on if unspecified even if mcs was selected * Dynamically evaluate ENABLE_COMPILER_SERVER each time we compile instead of evaluating it once at some arbitrary point during makefile evaluation * More detailed comment based on testing * Handle the /shared option in genproj so it doesn't fail * Raise basic profile check requirement to 6.2 and hopefully assert that named pipes work * Default compiler server to off for now.
Diffstat (limited to 'msvc')
-rwxr-xr-xmsvc/scripts/genproj.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/msvc/scripts/genproj.cs b/msvc/scripts/genproj.cs
index 1849009db00..79d9c4c3c26 100755
--- a/msvc/scripts/genproj.cs
+++ b/msvc/scripts/genproj.cs
@@ -716,6 +716,9 @@ public class MsbuildGenerator {
case "/sourcelink":
return true;
+
+ case "/shared":
+ return true;
}
Console.Error.WriteLine ($"// Failing with : {arg}");