Target
public class TargetA Target object represents an object that encapsulates information about
a host architecture, vendor, ABI, etc.
- 
                  
                  Creates a Targetobject from an LLVM target object.DeclarationSwift public init(llvm: LLVMTargetRef)
- 
                  
                  Returns trueif this target supports just-in-time compilation.Attempting to create a JIT for a Targetwhere this predicate is false may lead to program instability or corruption.DeclarationSwift public var hasJIT: Bool { get }
- 
                  
                  Returns trueif this target has aTargetMachineassociated with it.Target machines are registered by the corresponding initializer functions for each target. LLVMSwift will ensure that these functions are invoked when a TargetMachine is created, but not before. DeclarationSwift public var hasTargetMachine: Bool { get }
- 
                  
                  Returns trueif this target has an ASM backend.ASM backends are registered by the corresponding iniailizer functions for each target. LLVMSwift will ensure that these functions are invoked when a TargetMachine is created, but not before. DeclarationSwift public var hasASMBackend: Bool { get }
- 
                  
                  The name of this target. DeclarationSwift public var name: String { get }
- 
                  
                  The description of this target. DeclarationSwift public var targetDescription: String { get }
- 
                  
                  Returns a sequence of all targets in the global list of targets. DeclarationSwift public static var allTargets: AnySequence<Target> { get }
- 
                  
                  Returns the first target in the global target list, if it exists. DeclarationSwift public static var firstTarget: Target? { get }
- 
                  
                  Returns the target following this target in the global target list, if it exists. DeclarationSwift public func next() -> Target?
 Target Class Reference
        Target Class Reference