From 0a657f082b49ad864e1db7dbaf19f5daec9a924d Mon Sep 17 00:00:00 2001 From: Jonathan Pryor Date: Mon, 6 Jun 2016 17:16:29 -0400 Subject: [PATCH] [Configuration] Change default $(HostCc), $(HostCxx) values [Configuration] Change default $(HostCc), $(HostCxx) values As [Marek mentioned in PR 55][0], the default C and C++ compiler program names should be `cc` and `c++`, not `clang` and `clang++`, as `cc` and `c++` are more portable across various Unixes. [0]: https://github.com/xamarin/xamarin-android/pull/55#discussion_r65967751 --- Configuration.props | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Configuration.props b/Configuration.props index aee87a7de37..f13c50b1460 100644 --- a/Configuration.props +++ b/Configuration.props @@ -8,8 +8,8 @@ Windows Darwin Linux - clang - clang++ + cc + c++ mono $(HOMEDRIVE)$(HOMEPATH) 23