diff options
author | midipix <writeonce@midipix.org> | 2017-11-23 03:38:48 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2017-11-23 15:37:21 -0500 |
commit | 7e1d96703997547e21c88b44f6d738eef1f6166e (patch) | |
tree | 9943d6356a2cd0398ca465a593eadafc0bf443f0 /sysinfo/host | |
parent | 6837a1adbadf05d07df538c108fe4e2d8cc70b62 (diff) | |
download | mdso-7e1d96703997547e21c88b44f6d738eef1f6166e.tar.bz2 mdso-7e1d96703997547e21c88b44f6d738eef1f6166e.tar.xz |
build system: added --cchost support.
Diffstat (limited to 'sysinfo/host')
-rwxr-xr-x | sysinfo/host/host.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysinfo/host/host.sh b/sysinfo/host/host.sh index b3975ae..686edca 100755 --- a/sysinfo/host/host.sh +++ b/sysinfo/host/host.sh @@ -15,7 +15,7 @@ host_test() exit 2 fi - $mb_compiler -dM -E - < /dev/null > /dev/null && return 0 + $mb_compiler $mb_cflags -dumpmachine && return 0 error_msg "config error: invalid compiler." exit 2 |