summaryrefslogtreecommitdiffhomepage
path: root/sofort
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2019-02-13 22:46:19 -0500
committermidipix <writeonce@midipix.org>2019-02-13 22:53:12 -0500
commit7861a3c0fcc6a41bca4d2c383491a00b74e1afd9 (patch)
tree32add4c2a285238bbfa9fe469b48f3e698ca6ce6 /sofort
parent07b4912b10b75f680007be71c0de38237efd6080 (diff)
downloadntux-7861a3c0fcc6a41bca4d2c383491a00b74e1afd9.tar.bz2
ntux-7861a3c0fcc6a41bca4d2c383491a00b74e1afd9.tar.xz
build system: ccenv_find_tool(): support an optional tool-compatibility test.
Diffstat (limited to 'sofort')
-rw-r--r--sofort/ccenv/ccenv.sh11
1 files changed, 9 insertions, 2 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh
index 65a596a..04db31e 100644
--- a/sofort/ccenv/ccenv.sh
+++ b/sofort/ccenv/ccenv.sh
@@ -52,7 +52,14 @@ ccenv_find_tool()
{
if [ -z "$ccenv_prefixes" ]; then
for ccenv_tool in $ccenv_candidates; do
- command -v "$ccenv_tool" > /dev/null && return 0
+ if [ -z ${@:-} ]; then
+ command -v "$ccenv_tool" > /dev/null && \
+ return 0
+ else
+ command -v "$ccenv_tool" > /dev/null && \
+ "$ccenv_tool" $@ > /dev/null 2>&1 && \
+ return 0
+ fi
done
ccenv_tool=false
@@ -273,7 +280,7 @@ ccenv_set_cc()
{
if [ -z "$ccenv_cc" ]; then
ccenv_set_c_compiler_candidates
- ccenv_find_tool
+ ccenv_find_tool -dumpmachine
ccenv_cc="$ccenv_tool"
fi