Move almost all of cg_llvm/back/link.rs to cg_ssa
This commit is contained in:
parent
de4ee55dc7
commit
93a3b414e3
8 changed files with 1115 additions and 1111 deletions
|
@ -2634,6 +2634,7 @@ dependencies = [
|
||||||
"serialize 0.0.0",
|
"serialize 0.0.0",
|
||||||
"syntax 0.0.0",
|
"syntax 0.0.0",
|
||||||
"syntax_pos 0.0.0",
|
"syntax_pos 0.0.0",
|
||||||
|
"tempfile 3.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -44,8 +44,6 @@ extern crate rustc_fs_util;
|
||||||
#[macro_use] extern crate syntax;
|
#[macro_use] extern crate syntax;
|
||||||
extern crate syntax_pos;
|
extern crate syntax_pos;
|
||||||
extern crate rustc_errors as errors;
|
extern crate rustc_errors as errors;
|
||||||
extern crate serialize;
|
|
||||||
extern crate tempfile;
|
|
||||||
|
|
||||||
use rustc_codegen_ssa::traits::*;
|
use rustc_codegen_ssa::traits::*;
|
||||||
use rustc_codegen_ssa::back::write::{CodegenContext, ModuleConfig, FatLTOInput};
|
use rustc_codegen_ssa::back::write::{CodegenContext, ModuleConfig, FatLTOInput};
|
||||||
|
@ -78,8 +76,6 @@ mod back {
|
||||||
pub mod link;
|
pub mod link;
|
||||||
pub mod lto;
|
pub mod lto;
|
||||||
pub mod write;
|
pub mod write;
|
||||||
mod rpath;
|
|
||||||
pub mod wasm;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
mod abi;
|
mod abi;
|
||||||
|
|
|
@ -20,6 +20,7 @@ log = "0.4.5"
|
||||||
libc = "0.2.44"
|
libc = "0.2.44"
|
||||||
jobserver = "0.1.11"
|
jobserver = "0.1.11"
|
||||||
parking_lot = "0.7"
|
parking_lot = "0.7"
|
||||||
|
tempfile = "3.0.5"
|
||||||
|
|
||||||
serialize = { path = "../libserialize" }
|
serialize = { path = "../libserialize" }
|
||||||
syntax = { path = "../libsyntax" }
|
syntax = { path = "../libsyntax" }
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -5,3 +5,5 @@ pub mod link;
|
||||||
pub mod command;
|
pub mod command;
|
||||||
pub mod symbol_export;
|
pub mod symbol_export;
|
||||||
pub mod archive;
|
pub mod archive;
|
||||||
|
pub mod rpath;
|
||||||
|
pub mod wasm;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue