
This might interest some here: http://gcc.gnu.org/ml/gcc/2009-04/msg00590.html It'd be nice to get some test coverage. Any takers? -- Eric Niebler BoostPro Computing http://www.boostpro.com

On Fri, Apr 24, 2009 at 1:17 AM, Eric Niebler <eric@boostpro.com> wrote:
This might interest some here: http://gcc.gnu.org/ml/gcc/2009-04/msg00590.html
It'd be nice to get some test coverage. Any takers?
-- Eric Niebler BoostPro Computing http://www.boostpro.com _______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost
sorry for being a little OT here .. I'm running full tests on the trunk nightly with gcc 4.5.0 in -std=c++0x mode (built from gcc's svn trunk), but the results are not published for some reason. I don't see anything in the test logs to indicate any problem and when I look on the ftp server where the results are uploaded I see there the zipped results. I've tried to unpack them and view the XML file on both Linux and Windows (both work fine) and I don't see any sign of trouble there. So I'm wondering what might be the cause. The only thing which is little unusual is that in site-config.jam I have instead of the real version number (4.5.0) the string "current" i.e. the full toolset name is "gcc-current" instead of "gcc-4.5.0" or "gcc-4.5". Best regards, -- ________________ ::matus_chochlik

On Apr 23, 2009, at 5:17 PM, Eric Niebler wrote:
This might interest some here: http://gcc.gnu.org/ml/gcc/2009-04/msg00590.html
It'd be nice to get some test coverage. Any takers?
Yes, I'll work on getting this installed and running (initially under Redhat 4, eventually under Redhat 5). -- Noel

On Fri, Apr 24, 2009 at 1:24 PM, K. Noel Belcourt <kbelco@sandia.gov> wrote:
On Apr 23, 2009, at 5:17 PM, Eric Niebler wrote:
This might interest some here: http://gcc.gnu.org/ml/gcc/2009-04/msg00590.html
It'd be nice to get some test coverage. Any takers?
Yes, I'll work on getting this installed and running (initially under Redhat 4, eventually under Redhat 5).
Wonderful! --Beman

On Thu, Apr 23, 2009 at 7:17 PM, Eric Niebler <eric@boostpro.com> wrote:
This might interest some here: http://gcc.gnu.org/ml/gcc/2009-04/msg00590.html
It'd be nice to get some test coverage. Any takers?
For those who don't follow GCC, this is an important release. Other than concepts and lambda, many of the most important C++0x language features are implemented. The standard library also has C++0x features added. Thus it would be very helpful to see g++ 4.4.0 in -std=c++0x mode run daily on both trunk and release. --Beman

Eric Niebler-3 wrote:
This might interest some here: http://gcc.gnu.org/ml/gcc/2009-04/msg00590.html
It'd be nice to get some test coverage. Any takers?
-- Eric Niebler BoostPro Computing http://www.boostpro.com _______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost
I've done a test run with the Mingw 4.4.0 build from http://www.equation.com/servlet/equation.cmd?call=fortran . The results are available under the RW_Mingw runner. It sounds like an official Mingw 4.4 release is due soon - i'll try that whenever it appears. -- View this message in context: http://www.nabble.com/-ANN--GCC-4.4.0-Released-tp23207147p23235433.html Sent from the Boost - Dev mailing list archive at Nabble.com.

On Sat, Apr 25, 2009 at 3:05 PM, Richard Webb <richard.webb@boldonjames.com> wrote:
...
I've done a test run with the Mingw 4.4.0 build from http://www.equation.com/servlet/equation.cmd?call=fortran . The results are available under the RW_Mingw runner.
Thanks for the link. FWIW, I had to apply the patch below to get a hello world program to compile with -std=c++0x. --Beman --- cwchar.original Wed Apr 29 16:42:56 2009 +++ cwchar Wed Apr 29 16:37:03 2009 @@ -156,14 +156,14 @@ using ::mbsrtowcs; using ::putwc; using ::putwchar; - using ::swprintf; + //using ::swprintf; using ::swscanf; using ::ungetwc; using ::vfwprintf; #if _GLIBCXX_HAVE_VFWSCANF using ::vfwscanf; #endif - using ::vswprintf; + //using ::vswprintf; #if _GLIBCXX_HAVE_VSWSCANF using ::vswscanf; #endif
participants (5)
-
Beman Dawes
-
Eric Niebler
-
K. Noel Belcourt
-
Matus Chochlik
-
Richard Webb