Skip to content

Commit 8149484

Browse files
committed
Rollup merge of #37091 - alexcrichton:configure, r=brson
configure: Fix gcc detection for LLVM We have a case where 32-bit compilation accidentally requested clang when gcc was the only one available.
2 parents 8f10d66 + 62861f8 commit 8149484

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

configure

+2-2
Original file line numberDiff line numberDiff line change
@@ -1635,8 +1635,8 @@ do
16351635
("ccache gcc")
16361636
LLVM_CXX_32="ccache"
16371637
LLVM_CC_32="ccache"
1638-
LLVM_CXX_32_ARG1="clang++"
1639-
LLVM_CC_32_ARG1="clang"
1638+
LLVM_CXX_32_ARG1="g++"
1639+
LLVM_CC_32_ARG1="gcc"
16401640

16411641
LLVM_CXX_64="ccache"
16421642
LLVM_CC_64="ccache"

0 commit comments

Comments
 (0)