Skip to content

Commit

Permalink
auto merge of #11221 : vadimcn/rust/revert-manifest, r=alexcrichton
Browse files Browse the repository at this point in the history
In view of the problems outlined in #11207, I think manifest embedding should be removed, until we find a better solution.  :-(
  • Loading branch information
bors committed Dec 31, 2013
2 parents df25bb6 + 8562229 commit a1d3cc5
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 133 deletions.
7 changes: 0 additions & 7 deletions src/librustc/back/link.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

use back::archive::{Archive, METADATA_FILENAME};
use back::rpath;
use back::manifest;
use driver::driver::CrateTranslation;
use driver::session::Session;
use driver::session;
Expand Down Expand Up @@ -828,12 +827,6 @@ fn link_binary_output(sess: Session,
}
session::OutputExecutable => {
link_natively(sess, false, obj_filename, &out_filename);
// Windows linker will add an ".exe" extension if there was none
let out_filename = match out_filename.extension() {
Some(_) => out_filename.clone(),
None => out_filename.with_extension(win32::EXE_EXTENSION)
};
manifest::postprocess_executable(sess, &out_filename);
}
session::OutputDylib => {
link_natively(sess, true, obj_filename, &out_filename);
Expand Down
106 changes: 0 additions & 106 deletions src/librustc/back/manifest.rs

This file was deleted.

1 change: 0 additions & 1 deletion src/librustc/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ pub mod front {
pub mod back {
pub mod archive;
pub mod link;
pub mod manifest;
pub mod abi;
pub mod arm;
pub mod mips;
Expand Down
19 changes: 0 additions & 19 deletions src/test/run-pass/setup.rs

This file was deleted.

0 comments on commit a1d3cc5

Please sign in to comment.