summaryrefslogtreecommitdiff
path: root/src/jit/DIRS.proj
diff options
context:
space:
mode:
authordotnet-bot <dotnet-bot@microsoft.com>2018-03-21 15:49:46 -0700
committerdotnet-bot <dotnet-bot@microsoft.com>2018-03-21 15:49:46 -0700
commit5a281a4bbdf1719d613cabca406d0fe685e344f9 (patch)
treec9bfa570fb114706bb4f94821446453aff26ab07 /src/jit/DIRS.proj
parent0ebc0979a899d2e9da0643e3b5601618bcc3c4eb (diff)
downloadcoreclr-5a281a4bbdf1719d613cabca406d0fe685e344f9.tar.gz
coreclr-5a281a4bbdf1719d613cabca406d0fe685e344f9.tar.bz2
coreclr-5a281a4bbdf1719d613cabca406d0fe685e344f9.zip
Disable legacy_backend jits
[tfs-changeset: 1692827]
Diffstat (limited to 'src/jit/DIRS.proj')
-rw-r--r--src/jit/DIRS.proj4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/jit/DIRS.proj b/src/jit/DIRS.proj
index b09e433dc0..f49d4d6d26 100644
--- a/src/jit/DIRS.proj
+++ b/src/jit/DIRS.proj
@@ -25,9 +25,13 @@
<!-- Only the main JIT gets built for CoreSys. The other jits (e.g., altjits) do not. -->
<ItemGroup Condition="'$(BuildExePhase)' == '1' and '$(BuildProjectName)' != 'CoreSys'">
+ <!-- FrankenJit and FrankenAltJit builds are disabled. We do not test them in CoreCLR and changes from there regularly break legacy_bakend for x86, it is why it is disabled now
+ and should be completely deleted soon. -->
<!-- Build the "FrankenJit" (RyuJIT front-end, legacy back-end) and "FrankenAltjit". These can't conflict with the names of the JIT32 directory outputs. -->
+ <!--
<ProjectFile Condition="'$(BuildArchitecture)' == 'i386' or '$(BuildArchitecture)' == 'arm'" Include="frankenjit\frankenjit.nativeproj" />
<ProjectFile Condition="'$(BuildArchitecture)' == 'i386'" Include="frankenaltjit\frankenaltjit.nativeproj" />
+ -->
<!-- This might be useful, to help make sure JIT devs build all configurations of the JIT (including crossgen), but
it appears to cause problems with the build system, and it slows down normal JIT developer productivity by adding a seldom-useful build.