Skip to content

Commit 16a875a

Browse files
add ppc64le arch to crossgen2 not available list (#44583)
1 parent b90c9be commit 16a875a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Framework/App.Runtime/src/Microsoft.AspNetCore.App.Runtime.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ This package is an internal implementation of the .NET Core SDK and is not meant
4242
<!-- Pack .ni.r2rmap files in symbols package (native symbols for Linux) -->
4343
<AllowedOutputExtensionsInSymbolsPackageBuildOutputFolder>$(AllowedOutputExtensionsInSymbolsPackageBuildOutputFolder);.r2rmap</AllowedOutputExtensionsInSymbolsPackageBuildOutputFolder>
4444

45-
<!-- Optimize the framework using the crossgen2 tool. Crossgen2 is not currently supported on s390x. -->
46-
<CrossgenOutput Condition=" '$(TargetArchitecture)' == 's390x' ">false</CrossgenOutput>
45+
<!-- Optimize the framework using the crossgen2 tool. Crossgen2 is not currently supported on s390x, ppc64le. -->
46+
<CrossgenOutput Condition=" '$(TargetArchitecture)' == 's390x' OR '$(TargetArchitecture)' == 'ppc64le' ">false</CrossgenOutput>
4747
<CrossgenOutput Condition=" '$(CrossgenOutput)' == '' AND '$(Configuration)' != 'Debug' ">true</CrossgenOutput>
4848

4949
<!-- Produce crossgen2 profiling symbols (.ni.pdb or .r2rmap files). -->

0 commit comments

Comments
 (0)