-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rewrite and rename issue-69368 to rmake
- Loading branch information
Showing
7 changed files
with
24 additions
and
22 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,22 @@ | ||
// Test that previously triggered a linker failure with root cause | ||
// similar to one found in the issue #69368. | ||
// | ||
// The crate that provides oom lang item is missing some other lang | ||
// items. Necessary to prevent the use of start-group / end-group. | ||
// | ||
// The weak lang items are defined in a separate compilation units, | ||
// so that linker could omit them if not used. | ||
// | ||
// The crates that need those weak lang items are dependencies of | ||
// crates that provide them. | ||
// See https://github.com/rust-lang/rust/issues/69371 | ||
|
||
//FIXME(Oneirical): try it on test-various | ||
|
||
use run_make_support::rustc; | ||
|
||
fn main() { | ||
rustc().input("a.rs").run(); | ||
rustc().input("b.rs").run(); | ||
rustc().input("c.rs").run(); | ||
} |
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