EiffelStudio 22.05 (22.05.10.6292 - macosc-x86-64)
I don't know what all this does, but look at config.sh, lines 161 to 181:
if [ -n "$CC" ]; then
cc=$CC
else
cc='cc'
fi
if [ -n "$CFLAGS" ]; then
ccflags=$CFLAGS
else
ccflags='-pipe -fno-common -fPIC'
fi
ccldflags=''
if [ -n "$CPP" ]; then
cpp=$CPP
else
cpp='c++'
fi
if [ -n "$CPPFLAGS" ]; then
cppflags=$CPPFLAGS
else
cppflags="$ccflags"
fi
Notice the second to last line (it's line 180). Should that be:
cppflags="$ccpflags" not "=$ccflags"?
jjj