summaryrefslogtreecommitdiff
path: root/build.cmd
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2016-04-06 18:27:30 -1000
committerJan Kotas <jkotas@microsoft.com>2016-04-06 18:27:30 -1000
commit5e1f70cabf7e4f58c273452951fff53f1fd6981e (patch)
tree853c195e7cb5ba026fe2f7d6b52b08b82ef27919 /build.cmd
parentf760168ecd5469a22b8e3a94351750f9532d2abb (diff)
parent7dfeac95b92db995921ac7fa8dfb5f7e9afd3bad (diff)
downloadcoreclr-5e1f70cabf7e4f58c273452951fff53f1fd6981e.tar.gz
coreclr-5e1f70cabf7e4f58c273452951fff53f1fd6981e.tar.bz2
coreclr-5e1f70cabf7e4f58c273452951fff53f1fd6981e.zip
Merge pull request #4061 from jamesqo/use-roslyn
Remove UseRoslynCompiler variable from the build system
Diffstat (limited to 'build.cmd')
-rw-r--r--build.cmd3
1 files changed, 0 insertions, 3 deletions
diff --git a/build.cmd b/build.cmd
index 81a95779c4..2de79beeb3 100644
--- a/build.cmd
+++ b/build.cmd
@@ -19,8 +19,6 @@ set __ThisScriptPath="%~dp0"
:: __TestWorkingDir -- default: %__RootBinDir%\tests\%__BuildOS%.%__BuildArch.%__BuildType%\
::
:: Thus, these variables are not simply internal to this script!
-::
-:: The UseRoslynCompiler variable is used by src\mscorlib\GenerateCompilerResponseFile.targets.
:: Set the default arguments for build
set __BuildArch=x64
@@ -240,7 +238,6 @@ if not exist "%__VSToolsRoot%\VsDevCmd.bat" goto NoVS
:MSBuild14
set _msbuildexe="%ProgramFiles(x86)%\MSBuild\14.0\Bin\MSBuild.exe"
-set UseRoslynCompiler=true
:CheckMSBuild14
if not exist %_msbuildexe% set _msbuildexe="%ProgramFiles%\MSBuild\14.0\Bin\MSBuild.exe"
if not exist %_msbuildexe% echo %__MsgPrefix%Error: Could not find MSBuild.exe. Please see https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/developer-guide.md for build instructions. && exit /b 1