We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
run-make/duplicate-output-flavors
rmake.rs
1 parent 8217b41 commit ac751b3Copy full SHA for ac751b3
src/tools/tidy/src/allowed_run_make_makefiles.txt
@@ -31,7 +31,6 @@ run-make/dep-info-spaces/Makefile
31
run-make/dep-info/Makefile
32
run-make/dump-ice-to-disk/Makefile
33
run-make/dump-mono-stats/Makefile
34
-run-make/duplicate-output-flavors/Makefile
35
run-make/dylib-chain/Makefile
36
run-make/emit-path-unhashed/Makefile
37
run-make/emit-shared-files/Makefile
tests/run-make/duplicate-output-flavors/Makefile
tests/run-make/duplicate-output-flavors/rmake.rs
@@ -0,0 +1,6 @@
1
+use run_make_support::rustc;
2
+
3
+fn main() {
4
+ rustc().input("foo.rs").crate_type("rlib").run();
5
+ rustc().input("foo.rs").crate_type("rlib,rlib").run();
6
+}
0 commit comments