Extract rpath to rustc_back::rpath

This commit is contained in:
Brian Anderson 2014-07-06 18:01:16 -07:00
parent c5a2ac1097
commit 930abc1567
3 changed files with 2 additions and 1 deletions

View File

@ -55,6 +55,7 @@ pub mod back {
pub use rustc_back::arm;
pub use rustc_back::mips;
pub use rustc_back::mipsel;
pub use rustc_back::rpath;
pub use rustc_back::svh;
pub use rustc_back::target_strs;
pub use rustc_back::x86;
@ -63,7 +64,6 @@ pub mod back {
pub mod archive;
pub mod link;
pub mod lto;
pub mod rpath;
}
>>>>>>> Extract librustc_back from librustc

View File

@ -33,6 +33,7 @@ pub mod abi;
pub mod arm;
pub mod mips;
pub mod mipsel;
pub mod rpath;
pub mod svh;
pub mod target_strs;
pub mod x86;