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
34
35
36
37
38
39
40
41
42
43
44
45
use std::{fs::File, path::PathBuf};

use bincode::Options;
use clap::Parser;
use come::binary_format::clef::{Architecture, Clef, Os};
use shadow_rs::shadow;
shadow!(build);

/// SHUOSC linker.
#[derive(Parser, Debug)]
#[command(version, long_version = build::CLAP_LONG_VERSION, about, long_about = None)]
struct Args {
    /// Input file path.
    #[arg(short, long)]
    input: Vec<PathBuf>,
    #[arg(short, long)]
    output: PathBuf,
}

fn main() {
    let args = Args::parse();
    let mut result = args
        .input
        .iter()
        .map(File::open)
        .map(Result::unwrap)
        .map(|file| {
            bincode::DefaultOptions::new()
                .with_fixint_encoding()
                .deserialize_from(&file)
                .unwrap()
        })
        .fold(Clef::new(Architecture::RiscV, Os::BareMetal), Clef::merge);
    result
        .sections
        .iter_mut()
        .find(|it| it.meta.name == ".text")
        .map(|it| it.meta.loadable = Some(0x8000_0000))
        .unwrap();
    let mut output_file = File::create(args.output).unwrap();
    bincode::DefaultOptions::new()
        .with_fixint_encoding()
        .serialize_into(&mut output_file, &result)
        .unwrap();
}