summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2021-06-10 09:02:26 +0000
committermidipix <writeonce@midipix.org>2021-06-10 09:08:26 +0000
commit007aa296041eb1666fbf3fb188b34d0ee9c04c0e (patch)
tree38a64aed7445b1e77e90b99053d457bb256ed35f
parentbf65e25999a4fa5cf6b1b36cae9a5b08908f634f (diff)
downloadbautomake-007aa296041eb1666fbf3fb188b34d0ee9c04c0e.tar.bz2
bautomake-007aa296041eb1666fbf3fb188b34d0ee9c04c0e.tar.xz
build system: ccenv_set_cc(): enhanced host, cchost, and -dumpmachine logic.
-rw-r--r--sofort/ccenv/ccenv.sh29
1 files changed, 21 insertions, 8 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh
index bc0030a..a542823 100644
--- a/sofort/ccenv/ccenv.sh
+++ b/sofort/ccenv/ccenv.sh
@@ -501,13 +501,20 @@ ccenv_set_cc()
ccenv_errors=
if [ "$ccenv_cfgtype" = 'native' ]; then
+ ccenv_host=
+
if [ -n "$mb_native_host" ]; then
ccenv_host="$mb_native_host"
elif [ -n "$ccenv_dumpmachine_switch" ]; then
ccenv_host=$(eval $ccenv_cc $(printf '%s' "$ccenv_cflags") \
$ccenv_dumpmachine_switch 2>&3)
- else
+
+ elif command -v slibtool > /dev/null 2>&1; then
+ ccenv=$(slibtool --dumpmachine 2>/dev/null)
+ fi
+
+ if [ -z "$ccenv_host" ]; then
ccenv_machine=$(uname -m 2>/dev/null)
ccenv_system=$(uname -s 2>/dev/null)
@@ -537,15 +544,21 @@ ccenv_set_cc()
ccenv_cchost=$ccenv_host
elif [ -z "$ccenv_host" ]; then
- # assume that no -dumpmachine support means native build (fixme)
- ccenv_machine=$(uname -m 2>/dev/null)
- ccenv_system=$(uname -s 2>/dev/null)
+ # no -dumpmachine support and no --host argument implies native build
+ if command -v slibtool > /dev/null 2>&1; then
+ ccenv=$(slibtool --dumpmachine 2>/dev/null)
+ fi
- ccenv_machine="${ccenv_machine:-unknown}"
- ccenv_system="${ccenv_system:-anyos}"
+ if [ -z "$ccenv_host" ]; then
+ ccenv_machine=$(uname -m 2>/dev/null)
+ ccenv_system=$(uname -s 2>/dev/null)
+
+ ccenv_machine="${ccenv_machine:-unknown}"
+ ccenv_system="${ccenv_system:-anyos}"
- ccenv_host=$(printf '%s' "${ccenv_machine}-unknown-${ccenv_system}" \
- | tr '[[:upper:]]' '[[:lower:]]')
+ ccenv_host=$(printf '%s' "${ccenv_machine}-unknown-${ccenv_system}" \
+ | tr '[[:upper:]]' '[[:lower:]]')
+ fi
ccenv_cchost=$ccenv_host