Checking that the following compiles fail:
CC -n32 -c ftest1.cc
"ftest1.cc", line 4: warning(3322): omission of explicit type is nonstandard
("int" assumed)
typedef vector v;
^
"ftest1.cc", line 4: error(1065): expected a ";"
typedef vector v;
^
"ftest1.cc", line 7: error(1020): identifier "stack" is undefined
stack s;
^
"ftest1.cc", line 7: error(1020): identifier "v" is undefined
stack s;
^
"ftest1.cc", line 7: error(1020): identifier "s" is undefined
stack s;
^
4 errors detected in the compilation of "ftest1.cc".
Checking that the following compiles succeed:
CC -n32 -c atest1.cc
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test DEFECT/OLD_STL_HEADERS Positive
Checking that the following compiles fail: CC -n32 -DDEFECT_OLD_STL_HEADERS -c ftest1.cc "ftest1.cc", line 1: error(1005): could not open source file "cstdio" #include^ 1 catastrophic error detected in the compilation of "ftest1.cc". Compilation terminated. Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test DEFECT/OLD_STDC_HEADERS Positive
Checking that the following compiles fail: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -c ftest1.cc "ftest1.cc", line 2: error(1005): could not open source file "iostream" #include^ 1 catastrophic error detected in the compilation of "ftest1.cc". Compilation terminated. Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test DEFECT/OLD_IOSTREAM_HEADERS Positive
Checking that the following compiles fail: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -c ftest1.cc "ftest1.cc", line 2: error(1005): could not open source file "sstream" #include^ 1 catastrophic error detected in the compilation of "ftest1.cc". Compilation terminated. Test DEFECT/OLD_STRINGSTREAM Positive
Checking that the following compiles fail: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -c ftest1.cc "ftest1.cc", line 2: error(1005): could not open source file "iosfwd" #include^ 1 catastrophic error detected in the compilation of "ftest1.cc". Compilation terminated. Test DEFECT/NO_IOSFWD_HEADER Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test DEFECT/GCC27_STRINGSTREAM_STR Positive
Checking that the following compiles fail: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -c ftest1.cc "ftest1.cc", line 2: error(1005): could not open source file "iostream" #include^ 1 catastrophic error detected in the compilation of "ftest1.cc". Compilation terminated. Test DEFECT/NO_STDLIB_NAMESPACES Positive
Checking that the following compiles fail:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c ftest1.cc
"ftest1.cc", line 14: error(1020): identifier "vector" is undefined
vector v(10);
^
"ftest1.cc", line 14: error(1227): type name is not allowed
vector v(10);
^
"ftest1.cc", line 14: error(1020): identifier "v" is undefined
vector v(10);
^
"ftest1.cc", line 19: error(3316): expression must be a pointer to a complete
object type
v[i] = i;
^
"ftest1.cc", line 22: error(1020): identifier "count" is undefined
res = count( v.begin(), v.end(), j );
^
"ftest1.cc", line 22: error(1567): expression must have class type
res = count( v.begin(), v.end(), j );
^
"ftest1.cc", line 22: error(1567): expression must have class type
res = count( v.begin(), v.end(), j );
^
"ftest1.cc", line 16: warning(1552): variable "res" was set but never used
int res;
^
7 errors detected in the compilation of "ftest1.cc".
Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
"atest1.cc", line 14: error(1020): identifier "vector" is undefined
vector v(10);
^
"atest1.cc", line 14: error(1227): type name is not allowed
vector v(10);
^
"atest1.cc", line 14: error(1020): identifier "v" is undefined
vector v(10);
^
"atest1.cc", line 19: error(3316): expression must be a pointer to a complete
object type
v[i] = i;
^
"atest1.cc", line 22: error(1020): identifier "count" is undefined
count( v.begin(), v.end(), j, res );
^
"atest1.cc", line 22: error(1567): expression must have class type
count( v.begin(), v.end(), j, res );
^
"atest1.cc", line 22: error(1567): expression must have class type
count( v.begin(), v.end(), j, res );
^
"atest1.cc", line 22: warning(1551): variable "res" is used before its value
is set
count( v.begin(), v.end(), j, res );
^
7 errors detected in the compilation of "atest1.cc".
CC -n32 -o atest *.o -lm
ld32: FATAL 9: I/O error (*.o): No such file or directory
Checking that executable succeeds:
Checking the executable's output:
Test DEFECT/OLD_STL_COUNT Negative.
Checking that the following compiles fail: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c ftest1.cc Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test DEFECT/SGICC_STRING_HEADER Negative.
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test Tests/bool Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test Tests/cast1 Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test Tests/cast2 Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test Tests/cast3 Positive
Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c -LANG:exceptions=on atest1.cc
"atest1.cc", line 16: warning(1110): statement is unreachable
return;
^
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test Tests/except1 Positive
Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c -LANG:exceptions=on atest1.cc
"atest1.cc", line 35: warning(1110): statement is unreachable
return;
^
CC -n32 -o atest atest1.o -lm
ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol.
Checking that executable succeeds:
Checking the executable's output:
Test Tests/except2 Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test Tests/hello Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test Tests/mutable Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test Tests/ns1 Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test Tests/ns2 Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test Tests/ns3 Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test Tests/rtti2 Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test Tests/template1 Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test Tests/template2 Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/BOOL Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/CONST_CAST Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/DEFAULT_TEMPLATE_PARAMETERS Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/DYNAMIC_CAST Positive
Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
"atest1.cc", line 13: error(1018): expected a ")"
enum { a = (T1::a > T2::a) ? T1::a : T2::b,
^
"atest1.cc", line 13: error(1029): expected an expression
enum { a = (T1::a > T2::a) ? T1::a : T2::b,
^
"atest1.cc", line 13: error(1067): expected a "}"
enum { a = (T1::a > T2::a) ? T1::a : T2::b,
^
"atest1.cc", line 13: warning(1202): bit field cannot contain all values of
the enumerated type
enum { a = (T1::a > T2::a) ? T1::a : T2::b,
^
"atest1.cc", line 14: warning(1356): nonstandard member constant declaration
b = T1::b + T2::b,
^
"atest1.cc", line 14: error(3314): expression must have arithmetic, enum, or
pointer type
b = T1::b + T2::b,
^
"atest1.cc", line 15: warning(1356): nonstandard member constant declaration
c = (T1::c * T2::c + T2::a + T1::a)
^
"atest1.cc", line 15: error(1018): expected a ")"
c = (T1::c * T2::c + T2::a + T1::a)
^
"atest1.cc", line 16: error(1029): expected an expression
};
^
"atest1.cc", line 16: error(3314): expression must have arithmetic, enum, or
pointer type
};
^
"atest1.cc", line 16: warning(1065): expected a ";"
};
^
7 errors detected in the compilation of "atest1.cc".
CC -n32 -o atest *.o -lm
ld32: FATAL 9: I/O error (*.o): No such file or directory
Checking that executable succeeds:
Checking the executable's output:
Test BZ/ENUM_COMPUTATIONS Negative.
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c -LANG:exceptions=on atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/EXCEPTIONS Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/EXPLICIT Positive
Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
"atest1.cc", line 11: error(1424): template parameter "X" is not used in
declaring the parameter types of function template "to"
template
^
"atest1.cc", line 20: error(1227): type name is not allowed
Vector y = to(x);
^
"atest1.cc", line 20: error(1273): cannot determine which instance of function
template "to" is intended
Vector y = to(x);
^
3 errors detected in the compilation of "atest1.cc".
CC -n32 -o atest *.o -lm
ld32: FATAL 9: I/O error (*.o): No such file or directory
Checking that executable succeeds:
Checking the executable's output:
Test BZ/EXPLICIT_TEMPLATE_FUNCTION_QUALIFICATION Negative.
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/FULL_SPECIALIZATION_SYNTAX Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/FUNCTION_NONTYPE_PARAMETERS Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/HAVE_COMPLEX Positive
Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
"atest1.cc", line 13: error(1387): no suitable conversion function from
"std::complex" to "double" exists
acos(x);
^
"atest1.cc", line 14: error(1387): no suitable conversion function from
"std::complex" to "double" exists
asin(x);
^
"atest1.cc", line 15: error(1387): no suitable conversion function from
"std::complex" to "double" exists
atan(x);
^
"atest1.cc", line 16: error(1387): no suitable conversion function from
"std::complex" to "double" exists
atan2(x,y);
^
"atest1.cc", line 16: error(1387): no suitable conversion function from
"std::complex" to "double" exists
atan2(x,y);
^
"atest1.cc", line 17: error(1387): no suitable conversion function from
"std::complex" to "double" exists
atan2(x, double(3.0));
^
"atest1.cc", line 18: error(1387): no suitable conversion function from
"std::complex" to "double" exists
atan2(double(3.0), x);
^
7 errors detected in the compilation of "atest1.cc".
CC -n32 -o atest *.o -lm
ld32: FATAL 9: I/O error (*.o): No such file or directory
Checking that executable succeeds:
Checking the executable's output:
Test BZ/HAVE_COMPLEX_MATH Negative.
Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
"atest1.cc", line 26: error(1020): identifier "finite" is undefined
finite(x);
^
"atest1.cc", line 34: error(1020): identifier "trunc" is undefined
trunc(x);
^
2 errors detected in the compilation of "atest1.cc".
CC -n32 -o atest *.o -lm
ld32: FATAL 9: I/O error (*.o): No such file or directory
Checking that executable succeeds:
Checking the executable's output:
Test BZ/HAVE_IEEE_MATH Negative.
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/HAVE_NUMERIC_LIMITS Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/HAVE_RUSAGE Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc "atest1.cc", line 1: error(1005): could not open source file "iostream" #include^ 1 catastrophic error detected in the compilation of "atest1.cc". Compilation terminated. CC -n32 -o atest *.o -lm ld32: FATAL 9: I/O error (*.o): No such file or directory Checking that executable succeeds: Checking the executable's output: Test BZ/HAVE_STD Negative.
Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
"atest1.cc", line 20: error(1020): identifier "_class" is undefined
_class(x);
^
"atest1.cc", line 22: error(1020): identifier "itrunc" is undefined
itrunc(x);
^
"atest1.cc", line 23: error(1020): identifier "nearest" is undefined
nearest(x);
^
"atest1.cc", line 24: error(1020): identifier "rsqrt" is undefined
rsqrt(x);
^
"atest1.cc", line 25: error(1020): identifier "uitrunc" is undefined
uitrunc(x);
^
5 errors detected in the compilation of "atest1.cc".
CC -n32 -o atest *.o -lm
ld32: FATAL 9: I/O error (*.o): No such file or directory
Checking that executable succeeds:
Checking the executable's output:
Test BZ/HAVE_SYSTEM_V_MATH Negative.
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc "atest1.cc", line 3: error(1005): could not open source file "valarray" #include^ 1 catastrophic error detected in the compilation of "atest1.cc". Compilation terminated. CC -n32 -o atest *.o -lm ld32: FATAL 9: I/O error (*.o): No such file or directory Checking that executable succeeds: Checking the executable's output: Test BZ/HAVE_VALARRAY Negative.
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/MEMBER_CONSTANTS Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/MEMBER_TEMPLATES Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/MEMBER_TEMPLATES_OUTSIDE_CLASS Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/MUTABLE Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/NAMESPACES Positive
Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
"atest1.cc", line 6: error(1018): expected a ")"
void add(int length, double * restrict a, const double * restrict b,
^
"atest1.cc", line 10: error(1020): identifier "a" is undefined
a[i] = b[i] + c[i];
^
"atest1.cc", line 10: error(1020): identifier "b" is undefined
a[i] = b[i] + c[i];
^
"atest1.cc", line 10: error(1020): identifier "c" is undefined
a[i] = b[i] + c[i];
^
"atest1.cc", line 23: error(1136): too many arguments in function call
add(10,a,b,c);
^
5 errors detected in the compilation of "atest1.cc".
CC -n32 -o atest *.o -lm
ld32: FATAL 9: I/O error (*.o): No such file or directory
Checking that executable succeeds:
Checking the executable's output:
Test BZ/NCEG_RESTRICT Negative.
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/OLD_FOR_SCOPING Positive
Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
"atest1.cc", line 28: error(1282): more than one instance of overloaded
function "A::operator()" matches the argument list:
function template "A::operator()(T1, T2)"
function template "A::operator()(I, I)"
argument types are: (I<0>, I<1>)
x(a,b);
^
1 error detected in the compilation of "atest1.cc".
CC -n32 -o atest *.o -lm
ld32: FATAL 9: I/O error (*.o): No such file or directory
Checking that executable succeeds:
Checking the executable's output:
Test BZ/PARTIAL_ORDERING Negative.
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/PARTIAL_SPECIALIZATION Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/REINTERPRET_CAST Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/RTTI Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/STATIC_CAST Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/TEMPLATES Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc "atest1.cc", line 10: error(1442): "template" is not allowed templateclass T_alloc> ^ "atest1.cc", line 16: error(1522): template parameter " " may not have a template argument list T_alloc alloc_; ^ "atest1.cc", line 21: error(1420): argument list for class template "allocator" is missing foo x; ^ "atest1.cc", line 21: warning(1174): variable "x" was declared but never referenced foo x; ^ 3 errors detected in the compilation of "atest1.cc". CC -n32 -o atest *.o -lm ld32: FATAL 9: I/O error (*.o): No such file or directory Checking that executable succeeds: Checking the executable's output: Test BZ/TEMPLATES_AS_TEMPLATE_ARGUMENTS Negative.
Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
"atest1.cc", line 7: error(1424): template parameter "T" is not used in
declaring the parameter types of function template "Foo::convert"
template static T convert() { return T(); }
^
"atest1.cc", line 12: error(1040): expected an identifier
double z = Foo::template convert();
^
"atest1.cc", line 12: error(1065): expected a ";"
double z = Foo::template convert();
^
"atest1.cc", line 12: warning(1174): variable "z" was declared but never
referenced
double z = Foo::template convert();
^
3 errors detected in the compilation of "atest1.cc".
CC -n32 -o atest *.o -lm
ld32: FATAL 9: I/O error (*.o): No such file or directory
Checking that executable succeeds:
Checking the executable's output:
Test BZ/TEMPLATE_KEYWORD_QUALIFIER Negative.
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/TEMPLATE_QUALIFIED_BASE_CLASS Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/TEMPLATE_QUALIFIED_RETURN_TYPE Positive
Checking that the following compiles succeed:
CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc
"atest1.cc", line 25: error(1323): no operator "+" matches these operands
operand types are: B> + float
z + 0.5f; // match +(B>, A::W)
^
1 error detected in the compilation of "atest1.cc".
CC -n32 -o atest *.o -lm
ld32: FATAL 9: I/O error (*.o): No such file or directory
Checking that executable succeeds:
Checking the executable's output:
Test BZ/TEMPLATE_SCOPED_ARGUMENT_MATCHING Negative.
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/TYPENAME Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/TYPE_PROMOTION Positive
Checking that the following compiles succeed: CC -n32 -DDEFECT_OLD_STL_HEADERS -DDEFECT_OLD_STDC_HEADERS -DDEFECT_OLD_IOSTREAM_HEADERS -DDEFECT_OLD_STRINGSTREAM -DDEFECT_NO_IOSFWD_HEADER -DDEFECT_GCC27_STRINGSTREAM_STR -DDEFECT_NO_STDLIB_NAMESPACES -c atest1.cc CC -n32 -o atest atest1.o -lm ld32: WARNING 84: /usr/lib32/mips3/libm.so is not used for resolving any symbol. Checking that executable succeeds: Checking the executable's output: Test BZ/USE_NUMTRAIT Positive