diff options
-rwxr-xr-x | util/xcompile/xcompile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile index 3535793542..bce81698d5 100755 --- a/util/xcompile/xcompile +++ b/util/xcompile/xcompile @@ -343,14 +343,14 @@ test_architecture() { fi for clang_arch in $TCLIST invalid; do - testcc "clang" "-target ${clang_arch}-$TABI -c" && break + testcc "${XGCCPATH}clang" "-target ${clang_arch}-$TABI -c" && break done if [ "invalid" != "$clang_arch" ]; then # FIXME: this may break in a clang && !gcc configuration, # but that's more of a clang limitation. Let's be optimistic # that this will change in the future. - CLANG="clang -target ${clang_arch}-${TABI} -ccc-gcc-name ${GCC}" + CLANG="${XGCCPATH}clang -target ${clang_arch}-${TABI} -ccc-gcc-name ${GCC}" fi } |