Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Embed Windows application manifest." #11221

Merged
merged 1 commit into from
Dec 31, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.