compiler_specifics.qbk 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. [/license
  2. Boost.Bimap
  3. Copyright (c) 2006-2007 Matias Capeletto
  4. Distributed under the Boost Software License, Version 1.0.
  5. (See accompanying file LICENSE_1_0.txt or copy at
  6. http://www.boost.org/LICENSE_1_0.txt)
  7. ]
  8. [/ QuickBook Document version 1.4 ]
  9. [section Compiler specifics]
  10. [table
  11. [[Compiler ][OS Tested ][State ]]
  12. [[GCC 3.3 ][Linux ][Supported ]]
  13. [[GCC 3.4 ][Linux ][Supported ]]
  14. [[GCC 4.0 ][Linux, Mac][Supported ]]
  15. [[GCC 4.1 ][Linux ][Supported ]]
  16. [[GCC 4.2 ][Linux ][Supported ]]
  17. [[ICC 8.0 ][Linux ][Supported ]]
  18. [[ICC 9.0 ][Linux ][Supported ]]
  19. [[ICC 9.1 ][Linux ][Supported ]]
  20. [[GCC 4.2 ][Linux ][Supported ]]
  21. [[GCC 4.2 ][Linux ][Supported ]]
  22. [[VS 7.1 ][Windows ][Supported ]]
  23. [[VS 8.0 ][Windows ][Supported ]]
  24. [[ICC 7.1 ][Windows ][Not Supported ]]
  25. [[ICC 8.0 ][Windows ][Supported ]]
  26. [[ICC 9.1 ][Windows ][Supported ]]
  27. [[CW 8.3 ][Windows ][Not Supported ]]
  28. ]
  29. [/
  30. [[Comeau C++][ ][Not yet tested (Will be supported) ]]
  31. [[CW 8.3 ][Windows ][On going effort to support it ]]
  32. ]
  33. [h2 VS 7.1]
  34. If a .cpp file uses more than four different bimaps the compiler will run
  35. out of symbols and issue an internal compiler error. The official solution
  36. in msdn is to split the .cpp in several files or upgrade your compiler.
  37. [h2 VS 8.0]
  38. VC++ 8.0 warns on usage of certain Standard Library and API functions that
  39. can be cause buffer overruns or other possible security issues if misused.
  40. See http://msdn.microsoft.com/msdnmag/issues/05/05/SafeCandC/default.aspx
  41. But the wording of the warning is misleading and unsettling, there are no
  42. portable alternative functions, and VC++ 8.0's own libraries use the
  43. functions in question. In order to turn off the warnings add the followings
  44. defines at the begging of your .cpp files:
  45. #define _CRT_SECURE_NO_DEPRECATE
  46. #define _SCL_SECURE_NO_DEPRECATE
  47. [endsect]