aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorHaelwenn (lanodan) Monnier <[email protected]>2022-06-14 18:25:44 +0200
committerQuentin Carbonneaux <[email protected]>2022-06-14 18:46:38 +0200
commit2b451a28d8e98d5919e94dd611a8d9c66a9396af (patch)
tree9c330131b516122ad1d2ef808a80a0cd2432d9c2 /tools
parent6cd5f7028647a88935ec1f7776a08b51eb0fb1c8 (diff)
tools/test.sh: Without a TARGET, use $CC if defined
cc can be absent in Gentoo to make sure the right compiler is picked, for example when clang is preferred or when cross-compiling.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/test.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/test.sh b/tools/test.sh
index 536d240..4653b83 100755
--- a/tools/test.sh
+++ b/tools/test.sh
@@ -79,8 +79,8 @@ init() {
cc="cc"
;;
*)
- cc="cc -no-pie"
- testcc "$cc" || cc="cc"
+ cc="${CC:-cc} -no-pie"
+ testcc "$cc" || cc="${CC:-cc}"
;;
esac
TARGET=`$bin -t?`