From 9fcdab91024aba6d48d787595880f7bd86da6569 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 12 Aug 2019 14:03:36 -0700 Subject: [PATCH] Fix a bad merge typo --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 33e80d32..2d918b85 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1751,7 +1751,7 @@ impl Build { { "clang".to_string() } else if target.contains("vxworks") { - "wr=c++".to_string() + "wr-c++".to_string() } else if self.get_host()? != target { // CROSS_COMPILE is of the form: "arm-linux-gnueabi-" let cc_env = self.getenv("CROSS_COMPILE");