diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2019-07-19 12:35:02 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2019-07-19 12:35:02 +0000 |
commit | ff7a54609beb929d70c3243d03b15eb29b6fb5cb (patch) | |
tree | d255d05c1697cfb6b4ded9db658dc337da4015ce /configure | |
parent | 34f0e76ca0135b2b302e2b079482a4038149b079 (diff) | |
download | skalibs-ff7a54609beb929d70c3243d03b15eb29b6fb5cb.tar.xz |
Accept raw external $CC for cross-compiling
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -358,6 +358,13 @@ else cross= fi echo "Checking for C compiler..." +trycc ${CC} +if test -n "$cross" && test -n "$CC_AUTO" ; then + b=`basename "$CC"` + if test "${b}" = "${b##$cross}" ; then + echo "Warning: compiler $CC is declared as a cross-compiler for target $target but does not start with prefix $cross" 1>&2 + fi +fi trycc ${cross}${CC} trycc ${cross}gcc trycc ${cross}clang |