mklinker 0.1.57

为对应架构生成链接脚本
Documentation
1
2
3
4
5
6
7
use std::fs::File;

use crate::{MkLinker, Result};

pub(crate) fn arch_write_linker(_: &mut File, _: &MkLinker) -> Result<()> {
    Err(crate::MlError::UnImpl)
}