From cdbf52235aa596f3dd04de6f35631eeb1219ea45 Mon Sep 17 00:00:00 2001 From: midipix Date: Wed, 28 Oct 2015 01:20:48 -0400 Subject: build system: add cparser support. --- configure | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'configure') diff --git a/configure b/configure index 4d99b9b..59a7640 100755 --- a/configure +++ b/configure @@ -183,6 +183,9 @@ native_defaults() [ -z "$mb_native_cc" ] && mb_native_cc='clang' $mb_native_cc -dM -E - < /dev/null > /dev/null 2>/dev/null || mb_native_cc= + [ -z "$mb_native_cc" ] && mb_native_cc='cparser' + $mb_native_cc -dM -E - < /dev/null > /dev/null 2>/dev/null || mb_native_cc= + if [ x"$mb_native_cc" = x ]; then error_msg "config error: could not find a working native compiler." exit 2 @@ -196,6 +199,10 @@ native_defaults() $mb_native_cc -dM -E - < /dev/null | grep '__GCC' > /dev/null && mb_toolchain='gcc' fi + if [ x"$mb_toolchain" = x ]; then + $mb_native_cc -dM -E - < /dev/null | grep '__CPARSER__' > /dev/null && mb_toolchain='cparser' + fi + if [ x"$mb_toolchain" = x ]; then error_msg "config error: could not identify the native compiler." exit 2 -- cgit v1.2.3