summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2018-12-13 01:58:34 -0500
committermidipix <writeonce@midipix.org>2018-12-13 06:40:12 -0500
commit8e63a67cf02b6f320179726d4953d93a6e06bc7b (patch)
treef15ee8ea03ee4d03e1cba04175973c1d4bcb7160 /configure
parent3ebdb87e21d25b865e5757d4b30297d02fff177a (diff)
downloadsbpython2-8e63a67cf02b6f320179726d4953d93a6e06bc7b.tar.bz2
sbpython2-8e63a67cf02b6f320179726d4953d93a6e06bc7b.tar.xz
built system: added the NATIVE_CC_{CFGHOST|CFLAGS|LDFLAGS} variables.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure9
1 files changed, 8 insertions, 1 deletions
diff --git a/configure b/configure
index 4b7fe01..a7f5808 100755
--- a/configure
+++ b/configure
@@ -138,6 +138,9 @@ init_vars()
# overrides
mb_native_cc=$NATIVE_CC
mb_native_cc_host=$NATIVE_CC_HOST
+ mb_native_cc_cfghost=$NATIVE_CC_CFGHOST
+ mb_native_cc_cflags=$NATIVE_CC_CFLAGS
+ mb_native_cc_ldflags=$NATIVE_CC_LDFLAGS
mb_native_os=$NATIVE_OS
mb_native_os_bits=$NATIVE_OS_BITS
@@ -365,7 +368,8 @@ native_defaults()
fi
if [ -z "$mb_native_cc_host" ]; then
- mb_native_cc_host=$($mb_project_dir/sysinfo/host/host.sh --compiler=$mb_native_cc)
+ mb_native_cc_host=$($mb_project_dir/sysinfo/host/host.sh \
+ --compiler=$mb_native_cc --cflags="$mb_native_cc_cflags")
fi
if [ -z "$mb_compiler" ]; then
@@ -553,6 +557,9 @@ config_copy()
\
-e 's^@native_cc@^'"$mb_native_cc"'^g' \
-e 's^@native_cc_host@^'"$mb_native_cc_host"'^g' \
+ -e 's^@native_cc_cfghost@^'"$mb_native_cc_cfghost"'^g' \
+ -e 's^@native_cc_cflags@^'"$mb_native_cc_cflags"'^g' \
+ -e 's^@native_cc_ldflags@^'"$mb_native_cc_ldflags"'^g' \
\
-e 's^@native_os@^'"$mb_native_os"'^g' \
-e 's^@native_os_bits@^'"$mb_native_os_bits"'^g' \