[Scummvm-git-logs] scummvm master -> 3e2ad9ee0f115a76b950959fd906a5a8a2a537c0
sev-
sev at scummvm.org
Sat May 1 12:56:25 UTC 2021
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
3e2ad9ee0f CONFIGURE: Redirect all compilation runs to config.log
Commit: 3e2ad9ee0f115a76b950959fd906a5a8a2a537c0
https://github.com/scummvm/scummvm/commit/3e2ad9ee0f115a76b950959fd906a5a8a2a537c0
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-05-01T14:56:08+02:00
Commit Message:
CONFIGURE: Redirect all compilation runs to config.log
Changed paths:
configure
diff --git a/configure b/configure
index 5edd3644e1..636bf690cf 100755
--- a/configure
+++ b/configure
@@ -2367,10 +2367,10 @@ unsigned short ebcdic_mm[] = { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0
const char * _ebcdic() { char* s = (char*) ebcdic_mm; s = (char*) ebcdic_ii; return s; }
int main() { _ascii (); _ebcdic (); return 0; }
EOF
-$CXX $LDFLAGS $CXXFLAGS -o $TMPO$HOSTEXEEXT tmp_endianness_check.cpp
-if $_strings $TMPO$HOSTEXEEXT | grep BIGenDianSyS >/dev/null; then
+$CXX $LDFLAGS $CXXFLAGS -o $TMPO$HOSTEXEEXT tmp_endianness_check.cpp >> "$TMPLOG" 2>&1
+if $_strings $TMPO$HOSTEXEEXT 2>> "$TMPLOG"| grep BIGenDianSyS >/dev/null; then
_endian=big
-elif $_strings $TMPO$HOSTEXEEXT | grep LiTTleEnDian >/dev/null; then
+elif $_strings $TMPO$HOSTEXEEXT 2>> "$TMPLOG" | grep LiTTleEnDian >/dev/null; then
_endian=little
fi
echo $_endian;
@@ -2403,7 +2403,7 @@ int main() {
return 0;
}
EOF
- if $CXX $CXXFLAGS -c -o $TMPO.o tmp_find_type_with_size.cpp 2>/dev/null ; then
+ if $CXX $CXXFLAGS -c -o $TMPO.o tmp_find_type_with_size.cpp >> "$TMPLOG" 2>&1 ; then
break
else
if test "$datatype" = "unknown"; then
@@ -2428,7 +2428,7 @@ int main() {
return 0;
}
EOF
- $CXX $CXXFLAGS -c -o $TMPO.o tmp_pointer_is_32bit.cpp 2>/dev/null
+ $CXX $CXXFLAGS -c -o $TMPO.o tmp_pointer_is_32bit.cpp >> "$TMPLOG" 2>&1
status=$?
cc_check_clean tmp_pointer_is_32bit.cpp
return $status
More information about the Scummvm-git-logs
mailing list