-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Add initial support for FreeBSD.arm64 #71486
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
b2d90fd
f333fd0
a4b266d
1a6d288
3f2e848
8300f7c
60ab856
c0c5dea
001bb3d
5b623a2
54d0412
9c8775d
edf36ff
951c92a
98d39cd
88b8895
69a5c15
ed3368c
e1aa560
4aef1fb
6575aee
723ec0b
48fa1fa
6f07838
82139da
3362c01
14a6f04
1303ab7
e499941
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -3,16 +3,16 @@ | |||||||||
| <Import Project="Sdk.props" Sdk="Microsoft.DotNet.SharedFramework.Sdk" /> | ||||||||||
|
|
||||||||||
| <PropertyGroup> | ||||||||||
| <!-- Crossgen is not used for Mono, and does not currently create freebsd packages --> | ||||||||||
| <SkipBuild Condition="'$(RuntimeFlavor)' == 'Mono' or '$(RuntimeIdentifier)' == 'freebsd-x64'">true</SkipBuild> | ||||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @agocke, do you remember why we have duplicate runtime/src/coreclr/tools/aot/crossgen2/crossgen2.csproj Lines 7 to 9 in bb36771
Line 55 in bb36771
(Subsets.props is inherited by everything which imports Directory.Build.props at repo root) Can we deduplicate them? |
||||||||||
| <!-- Crossgen is not used for Mono --> | ||||||||||
| <SkipBuild Condition="'$(RuntimeFlavor)' == 'Mono'">true</SkipBuild> | ||||||||||
| <PlatformPackageType>ToolPack</PlatformPackageType> | ||||||||||
| <SharedFrameworkName>$(SharedFrameworkName).Crossgen2</SharedFrameworkName> | ||||||||||
| <PgoSuffix Condition="'$(PgoInstrument)' != ''">.PGO</PgoSuffix> | ||||||||||
| <OverridePackageId>$(SharedFrameworkName)$(PgoSuffix).$(RuntimeIdentifier)</OverridePackageId> | ||||||||||
| <ArchiveName>dotnet-crossgen2</ArchiveName> | ||||||||||
| <SharedFrameworkHostFileNameOverride>crossgen2</SharedFrameworkHostFileNameOverride> | ||||||||||
| <!-- Build this pack for any RID if building from source. Otherwise, only build select RIDs. --> | ||||||||||
| <RuntimeIdentifiers Condition="'$(DotNetBuildFromSource)' != 'true'">linux-x64;linux-musl-x64;linux-arm;linux-musl-arm;linux-arm64;linux-musl-arm64;freebsd-x64;osx-x64;osx-arm64;win-x64;win-x86;win-arm64;win-arm</RuntimeIdentifiers> | ||||||||||
| <RuntimeIdentifiers Condition="'$(DotNetBuildFromSource)' != 'true'">linux-x64;linux-musl-x64;linux-arm;linux-musl-arm;linux-arm64;linux-musl-arm64;freebsd-x64;freebsd-arm64;osx-x64;osx-arm64;win-x64;win-x86;win-arm64;win-arm</RuntimeIdentifiers> | ||||||||||
| <GenerateInstallers>false</GenerateInstallers> | ||||||||||
| <HostJsonTargetPath>tools/</HostJsonTargetPath> | ||||||||||
| <PermitDllAndExeFilesLackingFileVersion>true</PermitDllAndExeFilesLackingFileVersion> | ||||||||||
|
|
||||||||||
Uh oh!
There was an error while loading. Please reload this page.