mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
Should not recognize cc
as clang
This commit is contained in:
parent
93ba3a4c51
commit
6ee7aaf611
1 changed files with 5 additions and 5 deletions
|
@ -849,20 +849,20 @@ verify_gcc() {
|
||||||
}
|
}
|
||||||
|
|
||||||
require_clang() {
|
require_clang() {
|
||||||
local cc="$(command -v "$CC" || command -v "clang" || command -v "cc" || true)"
|
local clang="$(command -v "$CC" || command -v "clang" || true)"
|
||||||
|
|
||||||
if [ -z "$cc" ]; then
|
if [ -z "$clang" ]; then
|
||||||
local esc=$'\033'
|
local esc=$'\033'
|
||||||
{ echo
|
{ echo
|
||||||
echo "${esc}[1mERROR${esc}[0m: This package must be compiled with cc, but python-build couldn't"
|
echo "${esc}[1mERROR${esc}[0m: This package must be compiled with clang, but python-build couldn't"
|
||||||
echo "find a suitable \`cc\` executable on your system. Please install cc"
|
echo "find a suitable \`clang\` executable on your system. Please install clang"
|
||||||
echo "and try again."
|
echo "and try again."
|
||||||
echo
|
echo
|
||||||
} >&3
|
} >&3
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export CC="$cc"
|
export CC="$clang"
|
||||||
}
|
}
|
||||||
|
|
||||||
require_java() {
|
require_java() {
|
||||||
|
|
Loading…
Reference in a new issue