
Have just started to use GCC 4.1 tools and get this warning:
In file included from /usr/local/include/boost/config.hpp:35, from /usr/local/include/boost/detail/iterator.hpp:53, from /usr/local/include/boost/array.hpp:32, from /home/mwh/Coding/C++/Headers/uo_container.hpp:15, from test2.cpp:16: /usr/local/include/boost/boost/config/compiler/gcc.hpp:92:7: warning: #warning "Unknown compiler version - please run the configure tests and report the results"
So I was wondering, does a new config file
/usr/local/include/boost/boost/config/compiler/gcc.hpp
exist that deals with the latest GCC versions?
No, because that gcc version has not been released yet, which is why you're getting the message as well. However, as we don't currently define any defect macros for gcc versions post 3.4, I guess we could just permanently disable that warning now. John.