rustc_target/spec/targets/
m68k_unknown_none_elf.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
use crate::abi::Endian;
use crate::spec::{CodeModel, PanicStrategy, RelocModel, Target, TargetOptions};

pub(crate) fn target() -> Target {
    let options = TargetOptions {
        cpu: "M68010".into(),
        max_atomic_width: None,
        endian: Endian::Big,
        // LLD currently does not have support for M68k
        linker: Some("m68k-linux-gnu-ld".into()),
        panic_strategy: PanicStrategy::Abort,
        code_model: Some(CodeModel::Medium),
        has_rpath: false,
        // should be soft-float
        llvm_floatabi: None,
        relocation_model: RelocModel::Static,
        ..Default::default()
    };

    Target {
        llvm_target: "m68k".into(),
        metadata: crate::spec::TargetMetadata {
            description: Some("Motorola 680x0".into()),
            tier: Some(3),
            host_tools: Some(false),
            std: Some(false),
        },
        pointer_width: 32,
        data_layout: "E-m:e-p:32:16:32-i8:8:8-i16:16:16-i32:16:32-n8:16:32-a:0:16-S16".into(),
        arch: "m68k".into(),
        options,
    }
}