Jon, > However, there is one more problem (always, right?).
Yes :-) > Even though the debug > libraries compile just fine now, I have a problem with the optimized ones. > I get the following error: > > =====lac==============optimized==MT== block_vector.cc > /Users/jpitt/prog/lib/deal/contrib/boost/include/boost/bind.hpp: In > function ‘boost::_bi::bind_t<R, R (*)(B1, B2, B3), typename > boost::_bi::list_av_3<A1, A2, A3>::type> boost::bind(R (*)(B1, B2, B3), A1, > A2, A3) [with R = void, B1 = std::complex<float>*, B2 = > std::complex<float>*, B3 = const > std::complex<float>&, A1 = boost::arg<1>, A2 = boost::arg<2>, A3 = > std::complex<float>]’: > /Users/jpitt/prog/lib/deal/contrib/boost/include/boost/bind.hpp:109: > internal compiler error: Bus error > Please submit a full bug report, > with preprocessed source if appropriate. > See <URL:http://developer.apple.com/bugreporter> for instructions. > make[1]: *** [/Users/jpitt/prog/lib/deal/lib/lac/block_vector.o] Error 1 > make: *** [laco] Error 2 > > > This really has me stuck, as I don't know much about internal compiler > errors (nor have I witnessed them too often). Do you have any ideas? I > tried this with both the 4.0.1 and 4.2.1 compilers distributed with OS X. I can't reproduce this on linux, with neither of these two compiler versions. I'm afraid I therefore can't help you much in this regard :-( The way to deal with these issues is to try to come up with a smaller code piece that shows the same problem and where you can play with different ways to write the code that may avoid the problem. To get there you'd have to start at block_vector.cc and cut out one function after the other till the problem disappears -- then at least you know which function this happens in. As you remove stuff, you can also sometimes remove header files, etc. It's not a pretty and fast process, but you'll probably get somewhere in half an hour or so even if it's boring... Best W. -- ------------------------------------------------------------------------- Wolfgang Bangerth email: [email protected] www: http://www.math.tamu.edu/~bangerth/ _______________________________________________ dealii mailing list http://poisson.dealii.org/mailman/listinfo/dealii
