Skip to content

Commit

Permalink
configure: Fix gcc detection for LLVM
Browse files Browse the repository at this point in the history
We have a case where 32-bit compilation accidentally requested clang when gcc
was the only one available.
  • Loading branch information
alexcrichton committed Oct 11, 2016
1 parent 6d62084 commit 62861f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure
Expand Up @@ -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"
Expand Down

0 comments on commit 62861f8

Please sign in to comment.