Skip to content

Commit

Permalink
Rollup merge of rust-lang#37091 - alexcrichton:configure, r=brson
Browse files Browse the repository at this point in the history
configure: Fix gcc detection for LLVM

We have a case where 32-bit compilation accidentally requested clang when gcc
was the only one available.
  • Loading branch information
alexcrichton committed Oct 12, 2016
2 parents 8f10d66 + 62861f8 commit 8149484
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -1635,8 +1635,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 8149484

Please sign in to comment.