enumstd.Target.DynamicLinker.Kind[src]

Fields

none

No dynamic linker.

arch_os

Dynamic linker path is determined by the arch/OS components.

arch_os_abi

Dynamic linker path is determined by the arch/OS/ABI components.

Source Code

Source code
pub const Kind = enum {
    /// No dynamic linker.
    none,
    /// Dynamic linker path is determined by the arch/OS components.
    arch_os,
    /// Dynamic linker path is determined by the arch/OS/ABI components.
    arch_os_abi,
}