File tree 1 file changed +0
-16
lines changed
1 file changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -55,12 +55,6 @@ pub fn restore_library_path() {
55
55
}
56
56
}
57
57
58
- /// Run the command, printing what we are running.
59
- pub fn run_verbose ( cmd : & mut Command ) {
60
- println ! ( "running: {:?}" , cmd) ;
61
- run ( cmd) ;
62
- }
63
-
64
58
pub fn run ( cmd : & mut Command ) {
65
59
if !try_run ( cmd) {
66
60
std:: process:: exit ( 1 ) ;
@@ -108,16 +102,6 @@ pub fn try_run_suppressed(cmd: &mut Command) -> bool {
108
102
output. status . success ( )
109
103
}
110
104
111
- pub fn gnu_target ( target : & str ) -> & str {
112
- match target {
113
- "i686-pc-windows-msvc" => "i686-pc-win32" ,
114
- "x86_64-pc-windows-msvc" => "x86_64-pc-win32" ,
115
- "i686-pc-windows-gnu" => "i686-w64-mingw32" ,
116
- "x86_64-pc-windows-gnu" => "x86_64-w64-mingw32" ,
117
- s => s,
118
- }
119
- }
120
-
121
105
pub fn make ( host : & str ) -> PathBuf {
122
106
if host. contains ( "dragonfly" )
123
107
|| host. contains ( "freebsd" )
You can’t perform that action at this time.
0 commit comments