MachineArchitecture

abstract class MachineArchitecture : Named(source)

Represents a target architecture of a component. Typical architectures include "x86" and "x86-64".

Since

5.1

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard
val ARM64: String = "aarch64"
The ARM 64-bit architecture
Link copied to clipboard
val X86: String = "x86"
The intel x86 32-bit architecture
Link copied to clipboard
val X86_64: String = "x86-64"
The intel x86 64-bit architecture

Functions

Link copied to clipboard
abstract fun getName(): String