summaryrefslogtreecommitdiffhomepage
path: root/configure
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2018-12-02 20:32:30 -0500
committermidipix <writeonce@midipix.org>2018-12-10 20:34:34 -0500
commit714601676280a231184b1ed8081acb40ae62bce7 (patch)
tree7e243d955d6f053be62e7d99882160446df1737c /configure
parentf9d98c57383bf7031cc48f8baa695c7db3f96cd9 (diff)
downloadntapi-714601676280a231184b1ed8081acb40ae62bce7.tar.bz2
ntapi-714601676280a231184b1ed8081acb40ae62bce7.tar.xz
build system: added NATIVE_CC_HOST support.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 8 insertions, 0 deletions
diff --git a/configure b/configure
index 8c4a4ab..e607fee 100755
--- a/configure
+++ b/configure
@@ -113,6 +113,8 @@ init_vars()
# overrides
mb_native_cc=$NATIVE_CC
+ mb_native_cc_host=$NATIVE_CC_HOST
+
mb_native_os=$NATIVE_OS
mb_native_os_bits=$NATIVE_OS_BITS
mb_native_os_underscore=$NATIVE_OS_UNDERSCORE
@@ -346,6 +348,10 @@ native_defaults()
mb_native_cc='false'
fi
+ if [ -z "$mb_native_cc_host" ]; then
+ mb_native_cc_host=$($mb_project_dir/sysinfo/host/host.sh --compiler=$mb_native_cc)
+ fi
+
if [ -z "$mb_compiler" ]; then
$mb_native_cc -dM -E - < /dev/null | grep -q '__clang__' && mb_compiler='clang'
fi
@@ -530,6 +536,8 @@ config_copy()
-e 's^@psdir@^'"$mb_psdir"'^g' \
\
-e 's^@native_cc@^'"$mb_native_cc"'^g' \
+ -e 's^@native_cc_host@^'"$mb_native_cc_host"'^g' \
+ \
-e 's^@native_os@^'"$mb_native_os"'^g' \
-e 's^@native_os_bits@^'"$mb_native_os_bits"'^g' \
-e 's^@native_os_underscore@^'"$mb_native_os_underscore"'^g' \