From 0acda247895713283586ae1367691101d01392c5 Mon Sep 17 00:00:00 2001
From: midipix <writeonce@midipix.org>
Date: Thu, 13 Dec 2018 01:58:34 -0500
Subject: built system: added the NATIVE_CC_{CFGHOST|CFLAGS|LDFLAGS} variables.

---
 configure | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

(limited to 'configure')

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'		\
-- 
cgit v1.2.3