| 97 | } |
| 98 | |
| 99 | static constexpr Architecture::Type hostArchitecture() |
| 100 | { |
| 101 | switch (HostInstructionSet) |
| 102 | { |
| 103 | case InstructionSet::Intel32: return Architecture::Intel32; |
| 104 | case InstructionSet::Intel64: return Architecture::Intel64; |
| 105 | case InstructionSet::ARM64: return Architecture::Arm64; |
| 106 | } |
| 107 | Assert::unreachable(); |
| 108 | } |
| 109 | |
| 110 | static constexpr StringView buildArchitectureName(const Parameters& parameters, const Configuration& configuration) |
| 111 | { |
no outgoing calls
no test coverage detected