@@ -6,7 +6,6 @@ use rustc_serialize::{Encoder, Encodable};
6
6
7
7
use core:: { Dependency , PackageId , PackageIdSpec , Summary } ;
8
8
use core:: package_id:: Metadata ;
9
- use util:: { CargoResult , human} ;
10
9
11
10
/// Contains all the information about a package, as loaded from a Cargo.toml.
12
11
#[ derive( Clone , Debug ) ]
@@ -44,33 +43,40 @@ pub struct ManifestMetadata {
44
43
pub documentation : Option < String > , // url
45
44
}
46
45
47
- #[ derive( Debug , Clone , PartialEq , Eq , Hash , RustcEncodable , Copy ) ]
46
+ #[ derive( Debug , Clone , PartialEq , Eq , Hash ) ]
48
47
pub enum LibKind {
49
48
Lib ,
50
49
Rlib ,
51
50
Dylib ,
52
- StaticLib
51
+ Other ( String ) ,
53
52
}
54
53
55
54
impl LibKind {
56
- pub fn from_str ( string : & str ) -> CargoResult < LibKind > {
55
+ pub fn from_str ( string : & str ) -> LibKind {
57
56
match string {
58
- "lib" => Ok ( LibKind :: Lib ) ,
59
- "rlib" => Ok ( LibKind :: Rlib ) ,
60
- "dylib" => Ok ( LibKind :: Dylib ) ,
61
- "staticlib" => Ok ( LibKind :: StaticLib ) ,
62
- _ => Err ( human ( format ! ( "crate-type \" {}\" was not one of lib|rlib|dylib|staticlib" ,
63
- string) ) )
57
+ "lib" => LibKind :: Lib ,
58
+ "rlib" => LibKind :: Rlib ,
59
+ "dylib" => LibKind :: Dylib ,
60
+ s => LibKind :: Other ( s. to_string ( ) ) ,
64
61
}
65
62
}
66
63
67
64
/// Returns the argument suitable for `--crate-type` to pass to rustc.
68
- pub fn crate_type ( & self ) -> & ' static str {
65
+ pub fn crate_type ( & self ) -> & str {
69
66
match * self {
70
67
LibKind :: Lib => "lib" ,
71
68
LibKind :: Rlib => "rlib" ,
72
69
LibKind :: Dylib => "dylib" ,
73
- LibKind :: StaticLib => "staticlib"
70
+ LibKind :: Other ( ref s) => s,
71
+ }
72
+ }
73
+
74
+ pub fn linkable ( & self ) -> bool {
75
+ match * self {
76
+ LibKind :: Lib |
77
+ LibKind :: Rlib |
78
+ LibKind :: Dylib => true ,
79
+ LibKind :: Other ( ..) => false ,
74
80
}
75
81
}
76
82
}
@@ -335,12 +341,7 @@ impl Target {
335
341
pub fn linkable ( & self ) -> bool {
336
342
match self . kind {
337
343
TargetKind :: Lib ( ref kinds) => {
338
- kinds. iter ( ) . any ( |k| {
339
- match * k {
340
- LibKind :: Lib | LibKind :: Rlib | LibKind :: Dylib => true ,
341
- LibKind :: StaticLib => false ,
342
- }
343
- } )
344
+ kinds. iter ( ) . any ( |k| k. linkable ( ) )
344
345
}
345
346
_ => false
346
347
}
@@ -353,7 +354,7 @@ impl Target {
353
354
pub fn is_custom_build ( & self ) -> bool { self . kind == TargetKind :: CustomBuild }
354
355
355
356
/// Returns the arguments suitable for `--crate-type` to pass to rustc.
356
- pub fn rustc_crate_types ( & self ) -> Vec < & ' static str > {
357
+ pub fn rustc_crate_types ( & self ) -> Vec < & str > {
357
358
match self . kind {
358
359
TargetKind :: Lib ( ref kinds) => {
359
360
kinds. iter ( ) . map ( |kind| kind. crate_type ( ) ) . collect ( )
@@ -368,7 +369,11 @@ impl Target {
368
369
369
370
pub fn can_lto ( & self ) -> bool {
370
371
match self . kind {
371
- TargetKind :: Lib ( ref v) => * v == [ LibKind :: StaticLib ] ,
372
+ TargetKind :: Lib ( ref v) => {
373
+ !v. contains ( & LibKind :: Rlib ) &&
374
+ !v. contains ( & LibKind :: Dylib ) &&
375
+ !v. contains ( & LibKind :: Lib )
376
+ }
372
377
_ => true ,
373
378
}
374
379
}
0 commit comments