gcc-4.0-20060907 is now available

2006-09-07 Thread gccadmin
Snapshot gcc-4.0-20060907 is now available on ftp://gcc.gnu.org/pub/gcc/snapshots/4.0-20060907/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 4.0 SVN branch with the following options: svn://gcc.gnu.org/svn/gcc/branches

Re: Fortran regressions with revision 116758

2006-09-07 Thread Andrew Pinski
> > On Thu, Sep 07, 2006 at 05:03:35PM -0400, Andrew Pinski wrote: > > > > > > I got failures like > > > > > > compiler exited with status 1 > > > output is: > > > In file > > > /net/gnu-13/export/gnu/src/gcc/gcc/libgomp/testsuite/libgomp.fortran/reduction3.f90:20^M > > > ^M > > > !$ if (i .ne.

Re: Fortran regressions with revision 116758

2006-09-07 Thread H. J. Lu
On Thu, Sep 07, 2006 at 05:03:35PM -0400, Andrew Pinski wrote: > > > > I got failures like > > > > compiler exited with status 1 > > output is: > > In file > > /net/gnu-13/export/gnu/src/gcc/gcc/libgomp/testsuite/libgomp.fortran/reduction3.f90:20^M > > ^M > > !$ if (i .ne. -2147483648 .or. any (

Re: Fortran regressions with revision 116758

2006-09-07 Thread Andrew Pinski
> > I got failures like > > compiler exited with status 1 > output is: > In file > /net/gnu-13/export/gnu/src/gcc/gcc/libgomp/testsuite/libgomp.fortran/reduction3.f90:20^M > ^M > !$ if (i .ne. -2147483648 .or. any (ia .ne. -2147483648)) v = .true.^M > 1^M > Error: Integer

Fortran regressions with revision 116758

2006-09-07 Thread H. J. Lu
I got failures like compiler exited with status 1 output is: In file /net/gnu-13/export/gnu/src/gcc/gcc/libgomp/testsuite/libgomp.fortran/reduction3.f90:20^M ^M !$ if (i .ne. -2147483648 .or. any (ia .ne. -2147483648)) v = .true.^M 1^M Error: Integer too big for its kind a

4.1 status?

2006-09-07 Thread Kenny Simpson
What is the status of the 4.1 branch? Any word on 4.1.2? thanks, -Kenny __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com

Re: Building gfortran with gcc-4.2-20060906 also freezes

2006-09-07 Thread Chris Talley
Andrew, Thanks for the tip. I'll try to recompile GMP and MPFR. GMP and MPFR are VERY difficult to compile correctly on a Darwin system. Any hints on proper configure settings for GMP-4.2.1 / MPFR-2.2.0-patched on Darwin? Thanks, Chris Talley On Sep 7, 2006, at 12:03 PM, Andrew Pinski

Re: A difficult question about locale_mutex uninitialized

2006-09-07 Thread Benjamin Kosnik
(on-list reply to off-list followup, author stripped by request) > [Off list] > > Doesn't the compiler itself also have to be originally built with thread > support (one of the magic configure flags)? Yes. Many of the targets for gcc default to thread support, such as some of the BSD's and linu

Re: Branch st/cli opened to host development of CLI back-end

2006-09-07 Thread Lee Fisher
It would be nice to have a GCC with C99 managed IL output. Here are resources that anyone working on this should be aware of. The dotnet-language-devs mailing list is where .NET compiler authors hang out. You need to be a subscriber in order to read the archives. http://discussms.hosting.lsoft.co

Re: Building gfortran with gcc-4.2-20060906 also freezes

2006-09-07 Thread Andrew Pinski
On Thu, 2006-09-07 at 11:56 -0500, Chris Talley wrote: The freeze usually means the GMP you have installed is broken. Thanks, Andrew Pinski

Building gfortran with gcc-4.2-20060906 also freezes

2006-09-07 Thread Chris Talley
I hope this is the right mailing list for this question. As with my previous post (Bootstrap of gcc-4.1-20060901 freezes during building of libgfortran) , building gfortran with gcc-4.2-20060906 freezes in the same place. Does anyone have any suggestions of what I may be doing wrong? I've

Re: How to make a file which is both shared library and executable

2006-09-07 Thread Mike Hearn
On Thu, 07 Sep 2006 07:16:46 -0700, durgaprasad jammula wrote: > Hi All, > > I want to make a shared library which should also be an executable. Can > you please tell me how to do it. It used to be kind of a pain to do this, these days you can probably dlopen PIE binaries, or statically link in

Re: How to make a file which is both shared library and executable

2006-09-07 Thread John Love-Jensen
Hi Durga, Please do not cross-post to both gcc and gcc-help lists. Here is an example to do what you want: http://gcc.gnu.org/ml/gcc-help/2003-07/msg00232.html HTH, --Eljay

How to make a file which is both shared library and executable

2006-09-07 Thread durgaprasad jammula
Hi All, I want to make a shared library which should also be an executable. Can you please tell me how to do it. For example, in linux, consider /lib/libc.so.6. We can execute that as a command and we can use that also as a shared library. Even I want to make my libraries like that.

Build report for gcc 4.1.1 on Cygwin

2006-09-07 Thread Jesper de Jong
I successfully built GCC version 4.1.1 on Cygwin. The details: Output of running config.guess: i686-pc-cygwin Output of gcc -v: Using built-in specs. Target: i686-pc-cygwin Configured with: ../gcc-4.1.1/configure --prefix=/usr/local/gcc-4.1.1 --program-suffix=-4.1.1 --enable-threads=win32 --w

Re: A difficult question about locale_mutex uninitialized

2006-09-07 Thread Benjamin Kosnik
> SEH: System call: ose_mutex_lock > SEH: Error: A pointer to an uninitialized mutex (at 0x00b27988) was presented > to > the kernSEH: Information about current process "core_supervisor" > SEH: Pid 0x0001000b bid 0x00010008 progpid 0x > SEH: Callstack backtrace: > SEH: FrameAddress Retur

Migration of cross compiler

2006-09-07 Thread Mohamed Shafi
Hai, I am involved with the migration of a cross compiler from gcc 3.2 to gcc 3.4.6 My target.h has the following macros #define PROMOTE_PROTOTYPES 1and #define STRUCT_VALUE 0 These two macros are now a target hook in GCC 3.4.6. namely PROMOTE_PROTOTYPES as TARGET_PROMOTE_PROTOTYPES and ST

Branch st/cli opened to host development of CLI back-end

2006-09-07 Thread Roberto COSTA
Hello, following previous discussions in this mailing list and the approval from RMS and the steering committee about a CLI port of gcc, I've opened a development branch to host its development. The branch is st/cli. The CLI port project aims at producing highly-optimized CIL binaries, compli