[PATCH 02/12] configure.sh: use gcc as default compiler
Mikko Rapeli <[email protected]>
| Newsgroups | org.kernel.vger.trinity |
|---|---|
| Message-ID | <[email protected]> |
Cross compilers might not have cc symlink but do have gcc. Signed-off-by: Mikko Rapeli <[email protected]> --- configure.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.sh b/configure.sh index d7f16cb..c1a5ad2 100755 --- a/configure.sh +++ b/configure.sh @@ -10,7 +10,7 @@ fi MISSING_DEFS=0 -[ -z "$CC" ] && CC=cc +[ -z "$CC" ] && CC=gcc CC=${CROSS_COMPILE}${CC} -- 1.7.9.5