summaryrefslogtreecommitdiffhomepage
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 11:23:59 -0500
commit9df6020290537978af595739788a1ec2048f30ae (patch)
treeeb44388915ebca34dcc7fe83002eca0db88f6f3a /configure
parent823a96a411285b6de1f7123a9ce35f5950bd7a60 (diff)
downloadmdso-9df6020290537978af595739788a1ec2048f30ae.tar.bz2
mdso-9df6020290537978af595739788a1ec2048f30ae.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' \