From 5ab556e5f98fdf6f03e28af897472afda285e1fe Mon Sep 17 00:00:00 2001 From: Baoshan Pang Date: Fri, 9 Aug 2019 14:42:22 -0700 Subject: [PATCH] use wr-c++ instead of vx-cxx --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 37501d3..32176f6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1778,7 +1778,7 @@ impl Build { target == "wasm32-unknown-unknown" { "clang".to_string() } else if target.contains("vxworks") { - "vx-cxx".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");