mirror of
https://github.com/boostorg/boost.git
synced 2025-04-08 14:44:02 +00:00
avoid "Access control is not specified" warning with MIPSpro compiler
[SVN r10857]
This commit is contained in:
parent
aba32a835e
commit
fc29e32fbf
1 changed files with 6 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue