summaryrefslogtreecommitdiff
path: root/sysinfo
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2018-12-23 04:27:44 -0500
committermidipix <writeonce@midipix.org>2018-12-24 10:53:15 -0500
commit4a289f0fd1b62b9102b2a931ed675505f813a32f (patch)
tree7562342e3059193ebef05b9d3dc77a35d3c2cb8a /sysinfo
parentb54326bb5e589c9c5def5402572ca3e3b626289c (diff)
downloadslibtool-4a289f0fd1b62b9102b2a931ed675505f813a32f.tar.bz2
slibtool-4a289f0fd1b62b9102b2a931ed675505f813a32f.tar.xz
build system: target & native cchost logic: initial clean-up.
Diffstat (limited to 'sysinfo')
-rwxr-xr-xsysinfo/host/host.sh48
1 files changed, 0 insertions, 48 deletions
diff --git a/sysinfo/host/host.sh b/sysinfo/host/host.sh
deleted file mode 100755
index 686edca..0000000
--- a/sysinfo/host/host.sh
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/bin/sh
-
-error_msg()
-{
- echo $@ >&2
-}
-
-host_test()
-{
- mb_hdrdir=$(pwd)/build
- mkdir -p $mb_hdrdir || exit 2
-
- if [ -z "$mb_compiler" ]; then
- echo "config error: compiler not set."
- exit 2
- fi
-
- $mb_compiler $mb_cflags -dumpmachine && return 0
-
- error_msg "config error: invalid compiler."
- exit 2
-}
-
-# one: args
-for arg ; do
- case "$arg" in
- --help) usage
- ;;
- --compiler=*)
- mb_compiler=${arg#*=}
- ;;
- --cflags=*)
- mb_cflags=${arg#*=}
- ;;
- *)
- error_msg ${arg#}: "unsupported config argument."
- exit 2
- ;;
- esac
-done
-
-
-# two: test
-host_test
-
-
-# all done
-exit 0