We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c820cd commit 28fa827Copy full SHA for 28fa827
ci/cirrus.sh
@@ -19,11 +19,14 @@ print_environment() {
19
do
20
eval 'printf "%s %s " "$i=\"${'"$i"'}\""'
21
done
22
- # In contrast to the previous variables, CC, AR and NM may be unset. Print
23
- # them if they are set (even if set to the empty string).
+ # In contrast to the previous variables, CC, CFLAGS, AR and NM may be unset.
+ # Print them if they are set (even if set to the empty string).
24
if [ -n "${CC+x}" ]; then
25
echo -n "CC=\"${CC}\" "
26
fi
27
+ if [ -n "${CFLAGS+x}" ]; then
28
+ echo -n "CFLAGS=\"${CFLAGS}\" "
29
+ fi
30
if [ -n "${AR+x}" ]; then
31
echo -n "AR=\"${AR}\" "
32
0 commit comments