From b63a18f585d91cc1d6905c3d66431bf11c75b760 Mon Sep 17 00:00:00 2001 From: "Felix S. Klock II" Date: Sat, 11 Oct 2014 11:08:15 +0200 Subject: [PATCH] compiletest needs to link to native crate, or at least the `rt` library. (I tried using a dependency on `rustrt` instead, and that did not resolve the problem. But this does.) Fix #17883 --- mk/crates.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/crates.mk b/mk/crates.mk index 1da124fb563..03716f5d7f6 100644 --- a/mk/crates.mk +++ b/mk/crates.mk @@ -101,7 +101,7 @@ DEPS_regex := std DEPS_regex_macros = rustc syntax std regex DEPS_fmt_macros = std -TOOL_DEPS_compiletest := test getopts +TOOL_DEPS_compiletest := test getopts native TOOL_DEPS_rustdoc := rustdoc native TOOL_DEPS_rustc := rustc native TOOL_SOURCE_compiletest := $(S)src/compiletest/compiletest.rs