diff options
author | Russell Yanofsky <russ@yanofsky.org> | 2020-03-04 10:56:07 -0500 |
---|---|---|
committer | Russell Yanofsky <russ@yanofsky.org> | 2020-04-05 20:48:21 -0500 |
commit | b919efadff3d0393f4a8c3c1dc735f7ac5c665bb (patch) | |
tree | 675b28a4f9485326a5af06aebc29c087a8ec1d15 /depends/builders | |
parent | d54f64c6c700be0604190f52c84fc5f1cdd9f02f (diff) |
depends: Use default macos clang compiler
Suggested by Cory Fields <cory-nospam-@coryfields.com>
https://github.com/bitcoin/bitcoin/pull/16367#issuecomment-595393546
as alternate workaround for problem described
https://github.com/bitcoin/bitcoin/pull/16367#issuecomment-594600985
Diffstat (limited to 'depends/builders')
-rw-r--r-- | depends/builders/darwin.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/depends/builders/darwin.mk b/depends/builders/darwin.mk index eb587fca89..9513b6c21c 100644 --- a/depends/builders/darwin.mk +++ b/depends/builders/darwin.mk @@ -1,5 +1,5 @@ -build_darwin_CC:=$(shell xcrun -f clang) -build_darwin_CXX:=$(shell xcrun -f clang++) +build_darwin_CC:=clang +build_darwin_CXX:=clang++ build_darwin_AR:=$(shell xcrun -f ar) build_darwin_RANLIB:=$(shell xcrun -f ranlib) build_darwin_STRIP:=$(shell xcrun -f strip) |