summaryrefslogtreecommitdiffhomepage
path: root/sofort/ccenv
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2020-01-02 22:30:36 +0000
committermidipix <writeonce@midipix.org>2020-01-02 22:43:05 +0000
commit7ef776dba69d1fdb7c1be7f7d9d8b028ccb09b59 (patch)
tree4d6d8f73796ec4a1244a6ec1e8f603a372cc9984 /sofort/ccenv
parentb5f5b5d61b55434883b2f65b9adfb13584104efd (diff)
downloadntcon-7ef776dba69d1fdb7c1be7f7d9d8b028ccb09b59.tar.bz2
ntcon-7ef776dba69d1fdb7c1be7f7d9d8b028ccb09b59.tar.xz
build system: ccenv_common_init(): use vars directly.
Diffstat (limited to 'sofort/ccenv')
-rw-r--r--sofort/ccenv/ccenv.sh12
1 files changed, 11 insertions, 1 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh
index df353df..2fe29e6 100644
--- a/sofort/ccenv/ccenv.sh
+++ b/sofort/ccenv/ccenv.sh
@@ -1213,7 +1213,15 @@ ccenv_common_init()
if [ $ccenv_cfgtype = 'host' ]; then
ccenv_tflags=
- ccenv_cflags=$(make -s -f "$mb_pwd/Makefile.tmp" .display-cflags)
+ ccenv_cflags=
+
+ ccenv_cflags="$ccenv_cflags $mb_cflags_debug $mb_cflags_config"
+ ccenv_cflags="$ccenv_cflags $mb_cflags_sysroot $mb_cflags_common"
+ ccenv_cflags="$ccenv_cflags $mb_cflags_cmdline $mb_cflags"
+ ccenv_cflags="$ccenv_cflags $mb_cflags_path $mb_cflags_os"
+ ccenv_cflags="$ccenv_cflags $mb_cflags_site $mb_cflags_strict"
+ ccenv_cflags="$ccenv_cflags $mb_cflags_last $mb_cflags_once"
+
ccenv_cc="$mb_user_cc"
ccenv_cpp="$mb_user_cpp"
ccenv_cxx="$mb_user_cxx"
@@ -1260,6 +1268,8 @@ ccenv_set_toolchain_variables()
ccenv_output_defs
ccenv_clean_up
+
+ eval ccenv_${ccenv_cfgtype}_cc="$ccenv_cc"
}
ccenv_set_host_variables()