diff options
author | midipix <writeonce@midipix.org> | 2015-10-31 15:23:47 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2015-10-31 15:23:47 -0400 |
commit | 4977e2f190ba6bae5ad00ff0c24958e9094225b3 (patch) | |
tree | ebc0d043a82a6260f17f7a54a24d958a469d9ed2 /configure | |
parent | 198fa80cb8c7effaecaaffb2ab5d2416fa1510dc (diff) | |
download | ntapi-4977e2f190ba6bae5ad00ff0c24958e9094225b3.tar.bz2 ntapi-4977e2f190ba6bae5ad00ff0c24958e9094225b3.tar.xz |
build system: add cparser support.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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 |