From c13b21dca76b2eb319d0a2e766531770e7d56fde Mon Sep 17 00:00:00 2001 From: cancel Date: Thu, 20 Dec 2018 00:37:31 +0900 Subject: [PATCH] Tweak mac hard-coded clang version --- tool | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool b/tool index 130eff3..b6c58f1 100755 --- a/tool +++ b/tool @@ -127,7 +127,7 @@ if cc_vers=$(echo -e '#ifndef __clang__\n#error Not found\n#endif\n__clang_major cc_id=clang # Mac clang/llvm doesn't say the real version of clang. Just assume it's 3.9.0 if [[ $os == mac ]]; then - cc_vers=4.2.1 + cc_vers=3.9.0 else if command -v "lld" >/dev/null 2>&1; then lld_detected=1