- Creates the UnrealArchitectures class, which wraps a list of UnrealArch objects
- UnrealArch is a single architecture, expandable enum-like struct
- There is no more concept of "no/default architecture", there is always a valid active architecture when building
- Most uses of "string Architecture" are replaced with one of the two above, depending if multiple architectures are supported or not
- UnrealArch has some platform-extensions for platform-specific naming (like Linux adds in LinuxName that turns, for instance, Arm64 -> aarch64-unknown-linux-gnueabi, which is used in folder names, etc)
- UnrealArch has bIsX64 which can be used determine intel instruction set (as opposed to arm)
- TargetRules class has an "Architecture" accessor that will return a single architecture if the active architectures is a single architecture, or throw an exception if multiple. This is useful in a majority of the cases where a paltform can only have a single architecture active in TargetRules (microsoft platforms, for instance, will create separate targets when compiling multiple architectures at once)
- Added UnrealArchitectureConfig class, which contains all the architecture information for a platform (what architectures are supported, what ones are currently active for given project, etc)
#preflight 63c81fb5b065224750a1759e
#rb mike.fricker,roman.dzieciol,joe.kirchoff,dmytro.vovk,brandon.schaefer [various parts]
#p4v-preflight-copy 23562471
[CL 23829977 by josh adams in ue5-main branch]
- Rework some misleading platform checks.
- Always include the ThirdParty modules, those modules can control whether they're supported or not based on the TargetRules.
#jira none
#rb elizabeth.baumel, bryan.sefcik, robert.srinivasiah
#preflight 63b4913d1c35d1cbdb50aa04
[CL 23569739 by christopher waters in ue5-main branch]
Using INTC_D3D12_GetResourceAllocationInfo to get correct resource sizes when using 64bit atomics on Intel.
#jira UE-167783
#rb mihnea.balta
#preflight 63505afbb7420ffb4a8c6366
#rnx
#lockdown Mihnea.Balta
[CL 22662558 by christopher waters in ue5-main branch]
Adding Intel runtime support for atomic 64.
Based on changes provided by Robert.Kawiak at Intel.
#jira none
#rb mihnea.balta
#preflight 6308e6725a79fe735696e06f
[CL 21592544 by christopher waters in ue5-main branch]