Skip to content

Commit 0a657f0

Browse files
committed
[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]: #55 (comment)
1 parent 0c073f6 commit 0a657f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Configuration.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<HostOS Condition=" '$(HostOS)' == '' And '$(OS)' == 'Windows_NT' ">Windows</HostOS>
99
<HostOS Condition=" '$(HostOS)' == '' And '$(OS)' == 'Unix' And Exists ('/Applications') ">Darwin</HostOS>
1010
<HostOS Condition=" '$(HostOS)' == '' And '$(OS)' == 'Unix' ">Linux</HostOS>
11-
<HostCc Condition=" '$(HostCc)' == '' ">clang</HostCc>
12-
<HostCxx Condition=" '$(HostCxx)' == '' ">clang++</HostCxx>
11+
<HostCc Condition=" '$(HostCc)' == '' ">cc</HostCc>
12+
<HostCxx Condition=" '$(HostCxx)' == '' ">c++</HostCxx>
1313
<ManagedRuntime Condition=" '$(ManagedRuntime)' == '' And '$(OS)' != 'Windows_NT' ">mono</ManagedRuntime>
1414
<HOME Condition=" '$(HOME)' == '' ">$(HOMEDRIVE)$(HOMEPATH)</HOME>
1515
<AndroidApiLevel Condition=" '$(AndroidApiLevel)' == '' ">23</AndroidApiLevel>

0 commit comments

Comments
 (0)