From 62861f8797c5b5257e1d68c37870dc63dfb92830 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 11 Oct 2016 10:08:07 -0700 Subject: [PATCH] configure: Fix gcc detection for LLVM We have a case where 32-bit compilation accidentally requested clang when gcc was the only one available. --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 6cef35beb6d..4d13fce3250 100755 --- a/configure +++ b/configure @@ -1638,8 +1638,8 @@ do ("ccache gcc") LLVM_CXX_32="ccache" LLVM_CC_32="ccache" - LLVM_CXX_32_ARG1="clang++" - LLVM_CC_32_ARG1="clang" + LLVM_CXX_32_ARG1="g++" + LLVM_CC_32_ARG1="gcc" LLVM_CXX_64="ccache" LLVM_CC_64="ccache"