Auto merge of #33184 - tamird:misc-cleanup, r=alexcrichton

librustc_back: misc cleanup

r? @alexcrichton
This commit is contained in:
bors 2016-04-25 05:45:52 -07:00
commit cfae4dea87
8 changed files with 2 additions and 8 deletions

View File

@ -33,9 +33,8 @@ pub fn opts() -> TargetOptions {
}).unwrap_or((10, 7));
TargetOptions {
// OSX has -dead_strip, which doesn't rely on ffunction_sections
// OSX has -dead_strip, which doesn't rely on function_sections
function_sections: false,
linker: "cc".to_string(),
dynamic_linking: true,
executables: true,
is_like_osx: true,

View File

@ -13,7 +13,6 @@ use std::default::Default;
pub fn opts() -> TargetOptions {
TargetOptions {
linker: "cc".to_string(),
dynamic_linking: true,
executables: true,
linker_is_gnu: true,

View File

@ -13,7 +13,6 @@ use std::default::Default;
pub fn opts() -> TargetOptions {
TargetOptions {
linker: "cc".to_string(),
dynamic_linking: true,
executables: true,
linker_is_gnu: true,

View File

@ -13,7 +13,6 @@ use std::default::Default;
pub fn opts() -> TargetOptions {
TargetOptions {
linker: "cc".to_string(),
dynamic_linking: true,
executables: true,
linker_is_gnu: true,

View File

@ -13,7 +13,6 @@ use std::default::Default;
pub fn opts() -> TargetOptions {
TargetOptions {
linker: "cc".to_string(),
dynamic_linking: true,
executables: true,
linker_is_gnu: true,

View File

@ -13,7 +13,6 @@ use std::default::Default;
pub fn opts() -> TargetOptions {
TargetOptions {
linker: "cc".to_string(),
dynamic_linking: true,
executables: true,
linker_is_gnu: true,

View File

@ -13,7 +13,6 @@ use std::default::Default;
pub fn opts() -> TargetOptions {
TargetOptions {
linker: "cc".to_string(),
dynamic_linking: true,
executables: true,
has_rpath: true,

1
src/rustc/Cargo.lock generated
View File

@ -75,6 +75,7 @@ dependencies = [
"rustc_bitflags 0.0.0",
"rustc_const_math 0.0.0",
"rustc_data_structures 0.0.0",
"rustc_llvm 0.0.0",
"serialize 0.0.0",
"syntax 0.0.0",
]