From 9af14ee15e23e27bbdede97702326b6706b4e5b0 Mon Sep 17 00:00:00 2001 From: midipix Date: Dec 31 2018 00:37:21 +0000 Subject: build system: ccenv: fix detection of native os. --- diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index 91d9309..354dd90 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -284,6 +284,8 @@ ccenv_set_cc() ccenv_cc_cmd="$ccenv_cc" if [ "$ccenv_cfgtype" = 'native' ]; then + ccenv_host=$($ccenv_cc $ccenv_cflags -dumpmachine 2>/dev/null) + ccenv_cchost=$ccenv_host return 0 fi @@ -947,6 +949,7 @@ ccenv_common_init() ccenv_cfgtype=$1 ccenv_cfgfile="$mb_pwd/ccenv/$ccenv_cfgtype.mk" ccenv_freestd= + ccenv_cchost= if [ $ccenv_cfgtype = 'native' ]; then ccenv_makevar_prefix='NATIVE_'