summaryrefslogtreecommitdiffhomepage
path: root/sofort/ccenv/ccenv.sh
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2021-05-31 09:06:42 +0000
committermidipix <writeonce@midipix.org>2021-05-31 09:58:17 +0000
commit9dff60a74e9a24a6814bf17f4ba00c01c34f160a (patch)
treeeaca10d8e77f6b09f56770d2b778d2ae6296d861 /sofort/ccenv/ccenv.sh
parente891ac1706a2814fa7227d3fa2979ea3ef2bdad3 (diff)
downloadpemagine-9dff60a74e9a24a6814bf17f4ba00c01c34f160a.tar.bz2
pemagine-9dff60a74e9a24a6814bf17f4ba00c01c34f160a.tar.xz
build system: ccenv: added ccenv_cc_environment (hosted/freestanding).
Diffstat (limited to 'sofort/ccenv/ccenv.sh')
-rw-r--r--sofort/ccenv/ccenv.sh12
1 files changed, 9 insertions, 3 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh
index 378071f..e180d7e 100644
--- a/sofort/ccenv/ccenv.sh
+++ b/sofort/ccenv/ccenv.sh
@@ -767,6 +767,12 @@ ccenv_set_cc_underscore()
ccenv_create_framework_executable()
{
+ if [ "$ccenv_cfgtype" = 'host' ]; then
+ if [ "$mb_freestanding" = 'yes' ]; then
+ return 1
+ fi
+ fi
+
if [ -f $ccenv_image ]; then
mv $ccenv_image $ccenv_image.tmp
rm -f $ccenv_image.tmp
@@ -779,6 +785,7 @@ ccenv_create_framework_executable()
if $ccenv_cc "$ccenv_tmpname" -o $ccenv_image 2>&3; then
ccenv_ret=0
+ ccenv_cc_environment='hosted'
else
ccenv_ret=1
fi
@@ -812,7 +819,7 @@ ccenv_create_freestanding_executable()
-o $ccenv_image \
2>&3; then
ccenv_ret=0
- ccenv_freestd=yes
+ ccenv_cc_environment='freestanding'
else
ccenv_ret=1
fi
@@ -971,7 +978,7 @@ ccenv_set_cc_binfmt()
ccenv_set_os_pe()
{
- if [ -n "$ccenv_freestd" ]; then
+ if [ "$ccenv_cc_environment" = 'freestanding' ]; then
case "$ccenv_cchost" in
*-midipix | *-midipix-* )
ccenv_os='midipix' ;;
@@ -1451,7 +1458,6 @@ ccenv_common_init()
ccenv_cfgtype=$1
ccenv_cfgfile="$mb_pwd/ccenv/$ccenv_cfgtype.mk"
- ccenv_freestd=
ccenv_cchost=
if [ $ccenv_cfgtype = 'native' ]; then