From 12b6f4a58dab03c87993ba42e3b40b28cf2e2e71 Mon Sep 17 00:00:00 2001 From: Baptiste Daroussin Date: Sat, 25 Jun 2016 21:39:37 +0200 Subject: [PATCH] Add an extra detection for gcc --- configure | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure b/configure index cea3245..a33ac6b 100755 --- a/configure +++ b/configure @@ -289,6 +289,10 @@ native_defaults() fi if [ -z "$mb_compiler" ]; then + $mb_native_cc -v | grep -q "^gcc" && mb_compiler=gcc + fi + + if [ -z "$mb_compiler" ]; then echo "configure: info: could not identify the native compiler." mb_compiler='any-compiler' fi -- 2.9.0