bf2306 build system: render detection of the native compiler informational only.

Authored and Committed by midipix 8 years ago
1 file changed. 4 lines added. 4 lines removed.
    build system: render detection of the native compiler informational only.
    
        
file modified
+4 -4
configure CHANGED
@@ -223,8 +223,8 @@ native_defaults()
223
223
$mb_native_cc -dM -E - < /dev/null > /dev/null 2>/dev/null || mb_native_cc=
224
224
225
225
if [ -z "$mb_native_cc" ]; then
226
- error_msg "config error: could not find a working native compiler."
227
- exit 2
226
+ echo "configure: info: could not find a working native compiler."
227
+ mb_native_cc='false'
228
228
fi
229
229
230
230
if [ -z "$mb_compiler" ]; then
@@ -240,8 +240,8 @@ native_defaults()
240
240
fi
241
241
242
242
if [ -z "$mb_compiler" ]; then
243
- error_msg "config error: could not identify the native compiler."
244
- exit 2
243
+ echo "configure: info: could not identify the native compiler."
244
+ mb_compiler='any-compiler'
245
245
fi
246
246
247
247