summaryrefslogtreecommitdiffhomepage
path: root/sofort/ccenv
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2020-01-06 08:36:11 +0000
committermidipix <writeonce@midipix.org>2020-01-06 08:48:00 +0000
commit81d9df12eea687ea04efe02935ae0909850ae3af (patch)
tree55f32987d513bd35485db92cea5ef3e5a7a033a6 /sofort/ccenv
parent78f4bf2b7b39f58b4af9d354c47f5e75d49757a3 (diff)
downloadperk-81d9df12eea687ea04efe02935ae0909850ae3af.tar.bz2
perk-81d9df12eea687ea04efe02935ae0909850ae3af.tar.xz
build system: ccenv_common_init(): fully expand all cflags.
Diffstat (limited to 'sofort/ccenv')
-rw-r--r--sofort/ccenv/ccenv.sh11
1 files changed, 2 insertions, 9 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh
index 8046209..2f61736 100644
--- a/sofort/ccenv/ccenv.sh
+++ b/sofort/ccenv/ccenv.sh
@@ -1247,14 +1247,7 @@ ccenv_common_init()
if [ $ccenv_cfgtype = 'host' ]; then
ccenv_tflags=
- 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_cflags=$(make -s -f "$mb_pwd/Makefile.tmp" .cflags-host)
ccenv_cc="$mb_user_cc"
ccenv_cpp="$mb_user_cpp"
@@ -1264,7 +1257,7 @@ ccenv_common_init()
ccenv_pe_image_base="$mb_pe_image_base"
else
ccenv_tflags=
- ccenv_cflags="$mb_native_cflags"
+ ccenv_cflags=$(make -s -f "$mb_pwd/Makefile.tmp" .cflags-native)
ccenv_cc="$mb_native_cc"
ccenv_cpp="$mb_native_cpp"
ccenv_cxx="$mb_native_cxx"