summaryrefslogtreecommitdiffhomepage
path: root/configure
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2015-10-31 14:22:09 -0400
committermidipix <writeonce@midipix.org>2015-10-31 14:22:09 -0400
commit725fe4bc8273f7fc8abba198503bf5a29cb14601 (patch)
treef8e0e45057c8736c48aa462dc959628b51c1194f /configure
parente3afb3b0efc72c9ffca1a18450b12e2facaa521b (diff)
downloadpemagine-725fe4bc8273f7fc8abba198503bf5a29cb14601.tar.bz2
pemagine-725fe4bc8273f7fc8abba198503bf5a29cb14601.tar.xz
build system: add cparser support.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure7
1 files changed, 7 insertions, 0 deletions
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
@@ -197,6 +200,10 @@ native_defaults()
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
fi