diff options
author | Kyungwoo Lee <kyulee@microsoft.com> | 2015-10-29 08:33:06 -0700 |
---|---|---|
committer | Kyungwoo Lee <kyulee@microsoft.com> | 2015-11-18 08:12:12 -0800 |
commit | 657f2161e25d8bee774a27bae7cc179c346f4e87 (patch) | |
tree | ffb1b495e0517d82b7eff7a9102fa286c6bc4469 /dir.props | |
parent | 6f36ea5f55ba041ff9edce45a43291400d44e65b (diff) | |
download | coreclr-657f2161e25d8bee774a27bae7cc179c346f4e87.tar.gz coreclr-657f2161e25d8bee774a27bae7cc179c346f4e87.tar.bz2 coreclr-657f2161e25d8bee774a27bae7cc179c346f4e87.zip |
A few fixes for standlone Jit build
1. Fix for assertion in fgAddFieldSeqForZeroOffset
The fix relaxed the assertion under FEATURE_REF_ZERO_OFFSET_ALLOWED.
The feature is enabled when the standalone jit is built.
2. Package spec files for Windows/Linux and redirection.
3. Rename ProtoJit to RyuJit
Diffstat (limited to 'dir.props')
-rw-r--r-- | dir.props | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -105,12 +105,14 @@ <!-- Setup Nuget properties --> <ItemGroup> <NuSpecSrcs Include="$(SourceDir)\.nuget\Microsoft.DotNet.CoreCLR.nuspec" /> + <NuSpecSrcs Include="$(SourceDir)\.nuget\toolchain.win7-x64.Microsoft.DotNet.RyuJit.nuspec" /> <NuSpecSrcs Condition="'$(Configuration)'=='Release'" Include="$(SourceDir)\.nuget\Microsoft.DotNet.CoreCLR.Development.nuspec" /> <NuSpecSrcs Condition="'$(Configuration)'=='Debug'" Include="$(SourceDir)\.nuget\Microsoft.DotNet.CoreCLR.Debug.Development.nuspec" /> </ItemGroup> <ItemGroup> <!-- Backslash appended, see note in dir.props about the PackagesBinDir property --> <NuSpecs Include="$(PackagesBinDir)\Microsoft.DotNet.CoreCLR.nuspec" /> + <NuSpecs Include="$(PackagesBinDir)\toolchain.win7-x64.Microsoft.DotNet.RyuJit.nuspec" /> <NuSpecs Condition="'$(Configuration)'=='Release'" Include="$(PackagesBinDir)\Microsoft.DotNet.CoreCLR.Development.nuspec" /> <NuSpecs Condition="'$(Configuration)'=='Debug'" Include="$(PackagesBinDir)\Microsoft.DotNet.CoreCLR.Debug.Development.nuspec" /> </ItemGroup> |