-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
37 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// This test checks the compatibility of the interaction between `--emit obj` and | ||
// `#[global_allocator]`, as it is now possible to invoke the latter without the | ||
// allocator shim since #86844. As this feature is unstable, it should fail if | ||
// --cfg check_feature_gate is passed. | ||
// See https://github.com/rust-lang/rust/pull/86844 | ||
|
||
//@ ignore-cross-compile | ||
// Reason: the compiled binary is executed | ||
|
||
//FIXME(Oneirical): ignore-msvc FIXME(bjorn3) can't figure out how to link with the MSVC toolchain | ||
|
||
use run_make_support::{cc, cwd, has_extension, has_prefix, run, rustc, shallow_find_files}; | ||
|
||
fn main() { | ||
rustc().input("foo.rs").crate_type("bin").emit("obj").panic("abort").run(); | ||
let libdir = rustc().print("target-libdir").run().stdout_utf8(); | ||
let libdir = libdir.trim(); | ||
let alloc_libs = shallow_find_files(&libdir, |path| { | ||
has_prefix(path, "liballoc-") && has_extension(path, "rlib") | ||
}); | ||
let core_libs = shallow_find_files(libdir, |path| { | ||
has_prefix(path, "libcore-") && has_extension(path, "rlib") | ||
}); | ||
cc().input("foo.o").out_exe("foo").args(&alloc_libs).args(&core_libs).run(); | ||
run("foo"); | ||
|
||
// Check that linking without __rust_no_alloc_shim_is_unstable defined fails | ||
rustc() | ||
.input("foo.rs") | ||
.crate_type("bin") | ||
.emit("obj") | ||
.panic("abort") | ||
.cfg("check_feature_gate") | ||
.run(); | ||
cc().input("foo.o").out_exe("foo").args(&alloc_libs).args(&core_libs).run_fail(); | ||
} |