
3 Jul
2006
3 Jul
'06
12:33 p.m.
Peter Dimov wrote:
Bronek Kozicki kindly reminded me of a g++/Sparc version of sp_counted_base by Piotr Wyderski he sent me some months ago, which I'd completely forgotten about. I've attached it to this message; it requires the V9 instruction set and can be enabled by
#elif defined( __GNUC__ ) && ( defined( __sparc ) || defined(__sparc_v9__ ) ) # include <boost/detail/sp_counted_base_gcc_sparc.hpp>
in sp_counted_base.hpp.
Actually, now that I think about it, this should be #elif defined( __GNUC__ ) && defined( __sparc_v9__ ) # include <boost/detail/sp_counted_base_gcc_sparc.hpp> as the implementation requires Sparc V9.