Skip to content

Commit b53764c

Browse files
committed
std: Clean out deprecated APIs
Removes all unstable and deprecated APIs prior to the 1.8 release. All APIs that are deprecated in the 1.8 release are sticking around for the rest of this cycle. Some notable changes are: * The `dynamic_lib` module was moved into `rustc_back` as the compiler still relies on a few bits and pieces. * The `DebugTuple` formatter now special-cases an empty struct name with only one field to append a trailing comma.
1 parent 083db64 commit b53764c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+447
-2449
lines changed

src/compiletest/compiletest.rs

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
#![crate_type = "bin"]
1212

1313
#![feature(box_syntax)]
14-
#![feature(dynamic_lib)]
1514
#![feature(libc)]
1615
#![feature(rustc_private)]
1716
#![feature(str_char)]

src/compiletest/procsrv.rs

+12-6
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,31 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![allow(deprecated)]
12-
13-
use std::dynamic_lib::DynamicLibrary;
11+
use std::env;
12+
use std::ffi::OsString;
1413
use std::io::prelude::*;
1514
use std::path::PathBuf;
1615
use std::process::{ExitStatus, Command, Child, Output, Stdio};
1716

1817
fn add_target_env(cmd: &mut Command, lib_path: &str, aux_path: Option<&str>) {
1918
// Need to be sure to put both the lib_path and the aux path in the dylib
2019
// search path for the child.
21-
let mut path = DynamicLibrary::search_path();
20+
let var = if cfg!(windows) {
21+
"PATH"
22+
} else if cfg!(target_os = "macos") {
23+
"DYLD_LIBRARY_PATH"
24+
} else {
25+
"LD_LIBRARY_PATH"
26+
};
27+
let mut path = env::split_paths(&env::var_os(var).unwrap_or(OsString::new()))
28+
.collect::<Vec<_>>();
2229
if let Some(p) = aux_path {
2330
path.insert(0, PathBuf::from(p))
2431
}
2532
path.insert(0, PathBuf::from(lib_path));
2633

2734
// Add the new dylib search path var
28-
let var = DynamicLibrary::envvar();
29-
let newpath = DynamicLibrary::create_path(&path);
35+
let newpath = env::join_paths(&path).unwrap();
3036
cmd.env(var, newpath);
3137
}
3238

0 commit comments

Comments
 (0)