Parcourir la source

avoid "Access control is not specified" warning with MIPSpro compiler

[SVN r10857]
Jens Maurer il y a 25 ans
Parent
commit
fc29e32fbf
1 fichiers modifiés avec 6 ajouts et 4 suppressions
  1. 6 4
      status/compiler.cfg

+ 6 - 4
status/compiler.cfg

@@ -165,18 +165,20 @@ cxx -c -std strict_ansi -D__USE_STD_IOSTREAM -I%include %source
 cxx -o boosttmp.exe -std strict_ansi -D__USE_STD_IOSTREAM -I%include %source -lm
 <a href="http://www.compaq.com/products/software/compilers/candcxx.html">Compaq C++</a><br>6.3-012
 
+// MIPSpro warnings that were turned off
+// 1234  Access control is not specified ("private" by default)
 irix
 irixcc
 SGI MIPSpro CC 7.3.1.2
-CC -c -LANG:std -OPT:IEEE_NaN_inf=ON -I%include %source
-CC -G0 -o boosttmp.exe -LANG:std -OPT:IEEE_NaN_inf=ON -I%include %source -lm
+CC -c -LANG:std -OPT:IEEE_NaN_inf=ON -woff 1234 -I%include %source
+CC -G0 -o boosttmp.exe -LANG:std -OPT:IEEE_NaN_inf=ON -woff 1234 -I%include %source -lm
 SGI <a href="http://www.sgi.com/developers/devtools/languages/mipspro.html">MIPSpro</a> CC<br>7.3.1.2m
 
 irix
 irixcc-clib
 SGI MIPSpro CC 7.3.1.2 with <cXXX> headers
-CC -c -LANG:std -OPT:IEEE_NaN_inf=ON -I../boost/compatibility/cpp_c_headers -I%include %source
-CC -G0 -o boosttmp.exe -LANG:std -OPT:IEEE_NaN_inf=ON -I../boost/compatibility/cpp_c_headers -I%include %source -lm
+CC -c -LANG:std -OPT:IEEE_NaN_inf=ON -woff 1234 -I../boost/compatibility/cpp_c_headers -I%include %source
+CC -G0 -o boosttmp.exe -LANG:std -OPT:IEEE_NaN_inf=ON -woff 1234 -I../boost/compatibility/cpp_c_headers -I%include %source -lm
 SGI <a href="http://www.sgi.com/developers/devtools/languages/mipspro.html">MIPSpro</a> CC<br>7.3.1.2m<br>clib
 
 irix

粤ICP备19079148号