Re: possible bug in gcc compiler

2022-03-11 Thread Jakub Jelinek via Gcc
Note, this mailing list is for development of gcc, gcc-help would be more appropriate. On Fri, Mar 11, 2022 at 07:53:32PM +, Larry Jackson via Gcc wrote: > I goofed and failed to put a space after the "case" word: > > switch(nu){ > case1: v1 =val;break; > case2: v2 =val;break; > case3: v3 =va

possible bug in gcc compiler

2022-03-11 Thread Larry Jackson via Gcc
I goofed and failed to put a space after the "case" word: switch(nu){ case1: v1 =val;break; case2: v2 =val;break; case3: v3 =val;break; case4: v4 =val;break; } gcc compiler showed NO errors or warnings. Execution of the code produced incorrect results. After I added a space(no oth

Re: Multi-Threading GCC Compiler Internal Data

2019-09-18 Thread Nicholas Krause
On 9/18/19 4:01 AM, Richard Biener wrote: On Tue, 17 Sep 2019, Nicholas Krause wrote: On 9/17/19 2:37 AM, Richard Biener wrote: On Mon, 16 Sep 2019, Nicholas Krause wrote: Greetings Richard, I don't know if it's currently possible but whats the best way to either so about or use a tool t

Re: Multi-Threading GCC Compiler Internal Data

2019-09-18 Thread Richard Biener
On Tue, 17 Sep 2019, Nicholas Krause wrote: > > On 9/17/19 2:37 AM, Richard Biener wrote: > > On Mon, 16 Sep 2019, Nicholas Krause wrote: > > > >> Greetings Richard, > >> > >> I don't know if it's currently possible but whats the best way to either so > >> about or > >> > >> use a tool to expose

Re: Multi-Threading GCC Compiler Internal Data

2019-09-17 Thread Nicholas Krause
On 9/17/19 2:37 AM, Richard Biener wrote: On Mon, 16 Sep 2019, Nicholas Krause wrote: Greetings Richard, I don't know if it's currently possible but whats the best way to either so about or use a tool to expose shared state at both the GIMPLE and RTL level.  This would allow us to figure o

Re: Multi-Threading GCC Compiler Internal Data

2019-09-16 Thread Richard Biener
On Mon, 16 Sep 2019, Nicholas Krause wrote: > Greetings Richard, > > I don't know if it's currently possible but whats the best way to either so > about or > > use a tool to expose shared state at both the GIMPLE and RTL level.  This > would > > allow us to figure out much better what algorthim

Multi-Threading GCC Compiler Internal Data

2019-09-16 Thread Nicholas Krause
Greetings Richard, I don't know if it's currently possible but whats the best way to either so about or use a tool to expose shared state at both the GIMPLE and RTL level.  This would allow us to figure out much better what algorthims or data structures to choose to allow this to scale m

Re: GCC Compiler Optimization ignores or mistreats MFENCE memory barrier related instruction

2018-05-28 Thread Umesh Kalappa
Ok, thanks for the clarification jakub. Umesg On Mon, May 7, 2018, 2:08 PM Jakub Jelinek wrote: > On Mon, May 07, 2018 at 01:58:48PM +0530, Umesh Kalappa wrote: > > CCed Jakub, > > > > Agree that float division don't touch memory ,but fdiv result (stack > > > register ) is stored back to a me

Re: GCC Compiler Optimization ignores or mistreats MFENCE memory barrier related instruction

2018-05-07 Thread Jakub Jelinek
On Mon, May 07, 2018 at 01:58:48PM +0530, Umesh Kalappa wrote: > CCed Jakub, > > Agree that float division don't touch memory ,but fdiv result (stack > > register ) is stored back to a memory i.e fResult . That doesn't really matter. It is stored to a stack spill slot, something that doesn't h

Re: GCC Compiler Optimization ignores or mistreats MFENCE memory barrier related instruction

2018-05-07 Thread Umesh Kalappa
CCed Jakub, > Hi Alex, > Agree that float division don't touch memory ,but fdiv result (stack > register ) is stored back to a memory i.e fResult . > > So compiler barrier in the inline asm i.e ::memory should prevent the > shrinkage of instructions like "fstps fResult(%rip)"behind the

Re: GCC Compiler Optimization ignores or mistreats MFENCE memory barrier related instruction

2018-05-04 Thread Umesh Kalappa
Hi Alex , Agree that float division don't touch memory ,but fdiv result (stack register ) is stored back to a memory i.e fResult . So compiler barrier in the inline asm i.e ::memory should prevent the shrinkage of instructions like "fstps fResult(%rip)"behind the fence ? BTW ,if we mak

Re: GCC Compiler Optimization ignores or mistreats MFENCE memory barrier related instruction

2018-04-13 Thread Jakub Jelinek
On Fri, Apr 13, 2018 at 01:34:21PM +, Vivek Kinhekar wrote: > Hello Alexander, > > In the given testcase, the generated fdivrs instruction performs the > division of a symbol ref (memory value) by FPU Stack Register and stores > the value in FPU Stack Register. The stack registers are not mem

RE: GCC Compiler Optimization ignores or mistreats MFENCE memory barrier related instruction

2018-04-13 Thread Vivek Kinhekar
Oh! Thanks for the quick response, Jakub. Regards, Vivek Kinhekar -Original Message- From: Jakub Jelinek Sent: Friday, April 13, 2018 7:08 PM To: Vivek Kinhekar Cc: Alexander Monakov ; gcc@gcc.gnu.org Subject: Re: GCC Compiler Optimization ignores or mistreats MFENCE memory barrier

RE: GCC Compiler Optimization ignores or mistreats MFENCE memory barrier related instruction

2018-04-13 Thread Vivek Kinhekar
18 5:58 PM To: Vivek Kinhekar Cc: gcc@gcc.gnu.org Subject: Re: GCC Compiler Optimization ignores or mistreats MFENCE memory barrier related instruction On Fri, 13 Apr 2018, Vivek Kinhekar wrote: > The mfence instruction with memory clobber asm instruction should > create a barrier betw

RE: GCC Compiler Optimization ignores or mistreats MFENCE memory barrier related instruction

2018-04-13 Thread Vivek Kinhekar
Thanks for the quick response, Alexander! Regards, Vivek Kinhekar +91-7709046470 -Original Message- From: Alexander Monakov Sent: Friday, April 13, 2018 5:58 PM To: Vivek Kinhekar Cc: gcc@gcc.gnu.org Subject: Re: GCC Compiler Optimization ignores or mistreats MFENCE memory barrier

Re: GCC Compiler Optimization ignores or mistreats MFENCE memory barrier related instruction

2018-04-13 Thread Alexander Monakov
On Fri, 13 Apr 2018, Vivek Kinhekar wrote: > The mfence instruction with memory clobber asm instruction should create a > barrier between division and printf instructions. No, floating-point division does not touch memory, so the asm does not (and need not) restrict its motion. Alexander

GCC Compiler Optimization ignores or mistreats MFENCE memory barrier related instruction

2018-04-13 Thread Vivek Kinhekar
tf operation, would not get mixed up on reordering by the GCC compiler optimizer because of the presence of the __asm volatile ("mfence" ::: "memory"); line between them. But, the generated assembly, which is inlined be

Re: GCC compiler -Warray-bounds option

2018-02-26 Thread Jeff Law
On 02/26/2018 02:41 AM, Mustafa i. wrote: > Hello, > > What exactly is the -Warray-bounds option to the GCC compiler supposed > to warn about? It's meant to warn for out of bounds array access. For example, if you have a 10 element array, but try to access the 11th element

Re: GCC compiler -Warray-bounds option

2018-02-26 Thread Mustafa i. via gcc
Hello, What exactly is the -Warray-bounds option to the GCC compiler supposed to warn about? My g++ --version: g++ (GCC) 7.3.1 20180130 (Red Hat 7.3.1-2) Regards, Mustafa On Wed, Feb 21, 2018 at 9:19 PM, Jeff Law wrote: > On 02/21/2018 03:20 PM, Mustafa i. wrote: > > Hi, > &g

Re: An internal GCC compiler error when compiling GCC 7.x with GCC 6.x and 4.x

2017-08-07 Thread Joseph Myers
On Mon, 7 Aug 2017, Martin Liška wrote: > On 07/30/2017 05:08 AM, Ethin Probst wrote: > > --enable-checking=all --disable-nls --enable-fixed-point > > In file included from ../../../gcc-7.1.0/libgcc/fixed-bit.c:55:0: > > ../../../gcc-7.1.0/libgcc/fixed-bit.h:64:1: error: unable to emulate 'QQ'

Re: An internal GCC compiler error when compiling GCC 7.x with GCC 6.x and 4.x

2017-08-07 Thread Martin Liška
On 07/30/2017 05:08 AM, Ethin Probst wrote: > Hello all, > I was trying to build GCC 7.1.0 on OpenSuse 42.1 when it encountered > an internal error. The error is thrown, for lack of a better word, in > both 4.x and 6.x. > I would have submitted a bug report on the GCC bug tracker except for > the f

An internal GCC compiler error when compiling GCC 7.x with GCC 6.x and 4.x

2017-07-29 Thread Ethin Probst
Hello all, I was trying to build GCC 7.1.0 on OpenSuse 42.1 when it encountered an internal error. The error is thrown, for lack of a better word, in both 4.x and 6.x. I would have submitted a bug report on the GCC bug tracker except for the fact that I don't have all the information needed, so tho

Re: Ada gcc compiler for ia64-hp-openvms

2017-05-16 Thread Florian Weimer
On 05/15/2017 10:01 PM, David Edelsohn wrote: Your understanding is correct. GCC never accepts patches for a specific version / release -- even if it is the current release. Patches for new features or support must be contributed to the current development version. Can't the patches be put on

Re: Ada gcc compiler for ia64-hp-openvms <<< perhaps second, there are been mailing isuse

2017-05-16 Thread gérard Calliet
Hello, Actually, this port is a survival initiative. I was part of a VMS port from Alpha to Itanium, which was finally launched... the month Adacore decided to stop its support. I had long negociations with Quentin Ochem in France, hoping to get the Adacore compiler even without support, and

Re: Ada gcc compiler for ia64-hp-openvms

2017-05-16 Thread Arnaud Charlet
Also I forgot to mention: I would recommend putting your GCC 4.7 based port on e.g. github so that other people can benefit from it, since putting this code base in gcc.gnu.org isn't on the table as per David's emails. I think that would be the best compromise. Arno

Re: Ada gcc compiler for ia64-hp-openvms

2017-05-16 Thread Arnaud Charlet
> Ideally, you should create a general copyright assignment to GCC -- a > "futures" assignment of all patches for GCC. you can select which > patches to contribute. > > If you insist on limiting it, you can specify files. But that always > runs into the potential problem of files that were omitt

Re: Ada gcc compiler for ia64-hp-openvms

2017-05-15 Thread David Edelsohn
d PIA-SOFER SARL >>>> (http://pia-sofer.fr) have worked hard to make Ada available again on >>>> OpenVMs using GCC (ia64-hp-openvms). Both entities share ownership, >>>> while AdaLabs is also the author of the work. >>>> >>>> Our

Re: Ada gcc compiler for ia64-hp-openvms

2017-05-15 Thread David SAUVAGE - AdaLabs Ltd
GCC (ia64-hp-openvms). Both entities share ownership, >>> while AdaLabs is also the author of the work. >>> >>> Our work is based on gcc-4.7.4, and consists in building a gcc compiler >>> for openvms ia64 (through native, cross and canadian build, starting >&g

Re: Ada gcc compiler for ia64-hp-openvms

2017-04-29 Thread David SAUVAGE - AdaLabs Ltd
penVMS. >> >> AdaLabs Ltd (http://adalabs.com) and PIA-SOFER SARL >> (http://pia-sofer.fr) have worked hard to make Ada available again on >> OpenVMs using GCC (ia64-hp-openvms). Both entities share ownership, >> while AdaLabs is also the author of the work. >>

Re: Ada gcc compiler for ia64-hp-openvms

2017-04-28 Thread David Edelsohn
://pia-sofer.fr) have worked hard to make Ada available again on > OpenVMs using GCC (ia64-hp-openvms). Both entities share ownership, > while AdaLabs is also the author of the work. > > Our work is based on gcc-4.7.4, and consists in building a gcc compiler > for openvms ia64 (throug

Ada gcc compiler for ia64-hp-openvms

2017-04-27 Thread David SAUVAGE - AdaLabs Ltd
ownership, while AdaLabs is also the author of the work. Our work is based on gcc-4.7.4, and consists in building a gcc compiler for openvms ia64 (through native, cross and canadian build, starting from x86_64-linux-gnu to finally reach ia64-hp-openvms). The modifications are of two flavours: - patches to

Re: GCC Compiler shown on OpenMP Compilers web site

2015-11-03 Thread Jakub Jelinek
eb site by SC15 (Nov 15) and to > also update regularly in the future. > > Currently, it shows for GCC Compiler as: > GNU gcc > Free and open source - Linux, Solaris, AIX, MacOSX, Windows Also FreeBSD, NetBSD, OpenBSD, DragonFly BSD, HPUX and RTEMS support OpenMP in GCC. > Open

GCC Compiler shown on OpenMP Compilers web site

2015-11-03 Thread Yun He
#mail -s "GCC Compiler shown on OpenMP Compilers web site" gcc@gcc.gnu.org -r y...@lbl.gov -c rc...@rchrd.com -c y...@lbl.gov < message Dear GCC development team, Richard and I working on updating the OpenMP Compilers Support page at http://openmp.org/wp/openmp-compilers. Our go

GCC Compiler shown on OpenMP Compilers web site

2015-11-03 Thread Yun He
, it shows for GCC Compiler as: GNU gcc Free and open source - Linux, Solaris, AIX, MacOSX, Windows OpenMP 3.1 is supported since GCC 4.7 GCC OpenMP Wiki Compile with -fopenmp GCC OpenMP Manual More information (Notice some of above have links) Could you please review and update? We are also

Re: GCC compiler for ANDROID Nexus7

2013-02-19 Thread Andrew Haley
On 02/15/2013 01:13 PM, Jerome Huck wrote: > There seems to be some versions of GCC for ANDROID C/C++/Pascal working > or even Fortran, see the attached links. Can we hope one day to have > some official release? I can't see why not, but it'll require someone to contribute the code and commit to m

GCC compiler for ANDROID Nexus7

2013-02-15 Thread Jerome Huck
https://play.google.com/store/apps/details?id=com.n0n3m4.droidc&feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5uMG4zbTQuZHJvaWRjIl0.From Jerome Huck Good afternoon. There seems to be some versions of GCC for ANDROID C/C++/Pascal working or even Fortran, see the attached links. Can we hope one da

Re: gcc compiler modification to cater for new programming language

2012-06-14 Thread David Brown
On 14/06/2012 04:05, Chris Jones wrote: David Brown wrote: On 11/06/2012 09:45, Chris Jones wrote: Is it possible to modify the source code of gcc to enable to compilation of a completely new programming language, as yet unrecognized? How much of a big job would I be looking at for such a task?

Re: gcc compiler modification to cater for new programming language

2012-06-13 Thread Chris Jones
David Brown wrote: On 11/06/2012 09:45, Chris Jones wrote: Is it possible to modify the source code of gcc to enable to compilation of a completely new programming language, as yet unrecognized? How much of a big job would I be looking at for such a task? I would think that would depend entir

Re: gcc compiler modification to cater for new programming language

2012-06-11 Thread David Brown
On 11/06/2012 09:45, Chris Jones wrote: Is it possible to modify the source code of gcc to enable to compilation of a completely new programming language, as yet unrecognized? How much of a big job would I be looking at for such a task? I would think that would depend entirely on the language

Re: gcc compiler modification to cater for new programming language

2012-06-11 Thread Basile Starynkevitch
On Mon, Jun 11, 2012 at 05:45:12PM +1000, Chris Jones wrote: > Is it possible to modify the source code of gcc to enable to > compilation of a completely new programming language, as yet > unrecognized? How much of a big job would I be looking at for such a > task? It is certainly possible, and i

gcc compiler modification to cater for new programming language

2012-06-11 Thread Chris Jones
Is it possible to modify the source code of gcc to enable to compilation of a completely new programming language, as yet unrecognized? How much of a big job would I be looking at for such a task? Regards -- Chris Jones OpenSUSE Linux x86_64 (PC)|Android (Smartphone)|Windows

Re: Can You Put Comments Into GCC Compiler Options Files?

2011-02-24 Thread Ian Lance Taylor
DJ Delorie writes: >> Couldn't GCC (and binutils) on djgpp set >> _CRT0_FLAG_DISALLOW_RESPONSE_FILES so that GCC's routines get used >> to expand the response files instead of the runtime's routines? > > I suppose it could. I'm not sure how much confusion that would cause > (probably little if

Re: Can You Put Comments Into GCC Compiler Options Files?

2011-02-24 Thread DJ Delorie
> Couldn't GCC (and binutils) on djgpp set > _CRT0_FLAG_DISALLOW_RESPONSE_FILES so that GCC's routines get used > to expand the response files instead of the runtime's routines? I suppose it could. I'm not sure how much confusion that would cause (probably little if any), but as long as djgpp

Re: Can You Put Comments Into GCC Compiler Options Files?

2011-02-24 Thread Dave Korn
On 24/02/2011 03:56, DJ Delorie wrote: > The GNU "doschk" (in non-gnu/) utility can tell you what's legal and what > isn't. > > http://www.delorie.com/gnu/dl/ftp.gnu.org/non-gnu/doschk/doschk-1.1.tar.gz/doschk-1.1/doschk.c > > Note, however, that @files used by gcc *in djgpp* will *not* support

Re: Can You Put Comments Into GCC Compiler Options Files?

2011-02-23 Thread DJ Delorie
The GNU "doschk" (in non-gnu/) utility can tell you what's legal and what isn't. http://www.delorie.com/gnu/dl/ftp.gnu.org/non-gnu/doschk/doschk-1.1.tar.gz/doschk-1.1/doschk.c Note, however, that @files used by gcc *in djgpp* will *not* support comments, because @files in djgpp are parsed and ex

Re: Can You Put Comments Into GCC Compiler Options Files?

2011-02-23 Thread Dave Korn
On 23/02/2011 17:59, DJ Delorie wrote: > Ian Lance Taylor writes: >> I believe lThese option files were adapted from Windows, and they are >> primarily for use on Windows, which has much stricter limits on command >> line length than most Unix systems. We should implement whatever >> Windows impl

Re: Can You Put Comments Into GCC Compiler Options Files?

2011-02-23 Thread DJ Delorie
Ian Lance Taylor writes: > I believe lThese option files were adapted from Windows, and they are > primarily for use on Windows, which has much stricter limits on command > line length than most Unix systems. We should implement whatever > Windows implements. IIRC they were adapted from DJGPP,

Re: Can You Put Comments Into GCC Compiler Options Files?

2011-02-23 Thread Ian Lance Taylor
Basile Starynkevitch writes: > On Tue, 22 Feb 2011 18:09:40 -0800 > Ian Lance Taylor wrote: >> >> No comments are permitted in the contents of options files read using >> the @file syntax. The contents of the file are simply interpreted as >> command line arguments separated by whitespace. Do

Re: Can You Put Comments Into GCC Compiler Options Files?

2011-02-22 Thread Basile Starynkevitch
On Tue, 22 Feb 2011 18:09:40 -0800 Ian Lance Taylor wrote: > > No comments are permitted in the contents of options files read using > the @file syntax. The contents of the file are simply interpreted as > command line arguments separated by whitespace. Double quotes, single > quotes, and backs

Re: Can You Put Comments Into GCC Compiler Options Files?

2011-02-22 Thread Ian Lance Taylor
"Craig Dedo" writes: >     I would like to start using the GNU Compiler Collection (GCC), > particularly > GFortran.  Given the number of compiler and linker options that there are, it > makes a lot > of sense to put the commonly used compiler options into an options file. > >  

Can You Put Comments Into GCC Compiler Options Files?

2011-02-22 Thread Craig Dedo
GNU Compiler Collection Free Software Foundation 51 Franklin Street, Suite 500 Boston, MA   02110-1335 Everyone:     I would like to start using the GNU Compiler Collection (GCC), particularly GFortran.  Given the number of compiler and linker options that there are, it makes a lot of se

Re: Bus error gcc compiler for any for ( x in array ) inside Objective-C++ template

2009-10-15 Thread Ian Lance Taylor
John Holdsworth writes: > I've encountered a bus error using Apple's gcc in Xcode 3.1, 3.2 > compiling the following code or any containing for( x in y ) is used > inside a template in Objective-C++. > > template > class OODictionary { > void boom() { > NSArray *keys = nil;

Bus error gcc compiler for any for ( x in array ) inside Objective-C++ template

2009-10-15 Thread John Holdsworth
Hi, I've encountered a bus error using Apple's gcc in Xcode 3.1, 3.2 compiling the following code or any containing for( x in y ) is used inside a template in Objective-C++. template class OODictionary { void boom() { NSArray *keys = nil; for ( NSString

Re: Difference between Windows and Linux GCC compiler

2009-07-30 Thread Ben Elliston
Hi. > I'm interested to know what is the difference in programming using MS > Visual C++ on Windows and using the GCC compiler on Linux, i.e. what > are some of the things I can do on Visual C++ that won't compile/run > on Linux, and vice versa. This mailing list

Difference between Windows and Linux GCC compiler

2009-07-30 Thread Rayne
Hi all, I'm interested to know what is the difference in programming using MS Visual C++ on Windows and using the GCC compiler on Linux, i.e. what are some of the things I can do on Visual C++ that won't compile/run on Linux, and vice versa. For example, I know that Windows uses

question about gcc compiler

2009-07-02 Thread Yapparova Lilya
Good day! We`d like to use a compiler gcc to compile our application. I know that gcc exists under special exception which allows to use it for commercial application. I have 2 questions: If we use a static linking with gcc  -  should we distribute our application on the terms of GPL?  or ca

Re: gcc compiler for pdp10

2008-04-19 Thread J.C. Pizarro
;d be happy to act as a >reviewer/advisor to your changes. > >Al Lehotsky > >On Apr 18, 2008, at 20:21, Martin Chaney wrote: >> >>Hi, >> >>I'm am the proprietor of a gcc compiler for the PDP10 architecture. >> >>(This is a compiler pr

Re: gcc compiler for pdp10

2008-04-18 Thread Alan Lehotsky
: Hi, I'm am the proprietor of a gcc compiler for the PDP10 architecture. (This is a compiler previously worked on by Lars Brinkhoff who left XKL some while before I joined XKL. It's possible some of you may have been familiar with him or the compiler from that time.) The c

gcc compiler for pdp10

2008-04-18 Thread Martin Chaney
Hi, I'm am the proprietor of a gcc compiler for the PDP10 architecture. (This is a compiler previously worked on by Lars Brinkhoff who left XKL some while before I joined XKL. It's possible some of you may have been familiar with him or the compiler from that time.) The c

Slow GCC compiler => Very few people recompile lesser latest packages.

2008-02-10 Thread J.C. Pizarro
Hallo, When the recent GCC compiler is very slow compiling projects or packages then many people refuse to follow recompiling updated versions of projects, few people tend to test each time less the updated versions, there are less beta testers and finally less detection of unknown bugs . Where

Re: Building gcc with a non-gcc compiler (Was: old intentional gcc bug?)

2007-08-14 Thread Dennis Clarke
> On Sat, Jun 23, 2007 at 05:25:54PM -0700, Ian Lance Taylor wrote: >> >> At Cygnus, in the early and mid- 90s, we did this routinely, starting >> with the native compilers shipped with various Unix variants. As Unix >> variants generally no longer come with a free (as in beer) compiler >> other

Re: Building gcc with a non-gcc compiler (Was: old intentional gcc bug?)

2007-08-14 Thread Andreas Schwab
Rask Ingemann Lambertsen <[EMAIL PROTECTED]> writes: > Index: fixincludes/configure.ac > === > --- fixincludes/configure.ac (revision 127373) > +++ fixincludes/configure.ac (working copy) > @@ -5,6 +5,15 @@ > AC_CONFIG_AUX_DIR(..)

Building gcc with a non-gcc compiler (Was: old intentional gcc bug?)

2007-08-14 Thread Rask Ingemann Lambertsen
On Sat, Jun 23, 2007 at 05:25:54PM -0700, Ian Lance Taylor wrote: > > At Cygnus, in the early and mid- 90s, we did this routinely, starting > with the native compilers shipped with various Unix variants. As Unix > variants generally no longer come with a free (as in beer) compiler > other than gc

Re: GDB testsuite + dejagnu uses gcc compiler by default, how to configure testsuite to use other 'c' compilers (like cross compilers arm-cc, etc)

2007-07-12 Thread Ian Lance Taylor
"Venkatesan Jeevanandam" <[EMAIL PROTECTED]> writes: > DISCLAIMER: > This message (including attachment if any) is confidential and may be > privileged. Before opening attachments please check them for viruses and > defects. MindTree Consulting Limited (MindTree) will not be responsible for > a

FW: GDB testsuite + dejagnu uses gcc compiler by default, how to configure testsuite to use other 'c' compilers (like cross compilers arm-cc, etc)

2007-07-12 Thread Venkatesan Jeevanandam
From: Venkatesan Jeevanandam Sent: Thursday, July 12, 2007 2:38 PM To: [EMAIL PROTECTED]; gcc@gcc.gnu.org Subject: GDB testsuite + dejagnu uses gcc compiler by default, how to configure testsuite to use other 'c' compilers (like cross compil

GDB testsuite + dejagnu uses gcc compiler by default, how to configure testsuite to use other 'c' compilers (like cross compilers arm-cc, etc)

2007-07-12 Thread Venkatesan Jeevanandam
From: Venkatesan Jeevanandam Sent: Thursday, July 12, 2007 2:40 PM To: '[EMAIL PROTECTED]'; 'gcc@gcc.gnu.org' Subject: RE: GDB testsuite + dejagnu uses gcc compiler by default, how to configure testsuite to use other 'c' c

Re: Modifying the LABEL for functions emitted by the GCC Compiler

2006-09-01 Thread Rohit Arul Raj
Rohit Arul Raj wrote: The gcc-coldfire compiler spits out the labels as it is in the assembly file (main, printf etc), where as the IDE compiler spits out the labels prefixed with a '_' (_main, _printf etc). Is there any way i can make gcc-coldfire compiler emit the lables prefixed with

Re: Modifying the LABEL for functions emitted by the GCC Compiler

2006-09-01 Thread Tim Prince
Rohit Arul Raj wrote: The gcc-coldfire compiler spits out the labels as it is in the assembly file (main, printf etc), where as the IDE compiler spits out the labels prefixed with a '_' (_main, _printf etc). Is there any way i can make gcc-coldfire compiler emit the lables prefixed with

Modifying the LABEL for functions emitted by the GCC Compiler

2006-09-01 Thread Rohit Arul Raj
Hello Everyone, I am trying to link the object file emitted by a Cross Compiler IDE with the GCC Coldfire Linker and its libraries. The Problem that i faced was: The gcc-coldfire compiler spits out the labels as it is in the assembly file (main, printf etc), where as the IDE compiler spits ou

Re: GCC Compiler Engineer job (I am not a recruiter)

2006-04-12 Thread Mark Mitchell
Gerald Pfeifer wrote: > On Mon, 10 Apr 2006, Mark Mitchell wrote: >> It seems like we're getting consensus around that approach, despite the >> initial sentiment in the other direction from Mike and Joe. Mike, Joe, >> do either of you care to argue the point? If not, I'll volunteer to >> write so

Re: GCC Compiler Engineer job (I am not a recruiter)

2006-04-11 Thread Mike Stump
On Apr 10, 2006, at 4:30 PM, Mark Mitchell wrote: It seems like we're getting consensus around that approach, despite the initial sentiment in the other direction from Mike and Joe. Mike, Joe, do either of you care to argue the point? I'm fine with the status quo. I think comp.compilers a

Re: GCC Compiler Engineer job (I am not a recruiter)

2006-04-11 Thread Mark Mitchell
Gerald Pfeifer wrote: > Personally, I'd be in favor of GCC-releated internships and job offers on > our lists, but I see that it may be difficult to draw a line. That said, > I wonder how to handle .signatures: for example, if you added a line like > "CodeSourcery is hiring. http://.../work4us

Re: GCC Compiler Engineer job (I am not a recruiter)

2006-04-11 Thread Gabriel Dos Reis
Mark Mitchell <[EMAIL PROTECTED]> writes: | Mike Stump wrote: | | >> 3. How do we enforce any of these rules? | > | > Shame on those that violate them. | | I think we need to do better than that. I'll vote for keeping the current policy: not job ads on the development list. -- Gaby

Re: GCC Compiler Engineer job (I am not a recruiter)

2006-04-11 Thread Gerald Pfeifer
On Mon, 10 Apr 2006, Mark Mitchell wrote: > It seems like we're getting consensus around that approach, despite the > initial sentiment in the other direction from Mike and Joe. Mike, Joe, > do either of you care to argue the point? If not, I'll volunteer to > write some text for the web pages, a

Re: GCC Compiler Engineer job (I am not a recruiter)

2006-04-11 Thread Robert Dewar
Florian Weimer wrote: * Mark Mitchell: 1. What do we do if people do advertise jobs that are not free software jobs, or not purely free software jobs? How pure is pure? Does "Port GCC to proprietary OS" count as free or not? And: Does porting GCC to a new processor, to run on a free operati

Re: GCC Compiler Engineer job (I am not a recruiter)

2006-04-10 Thread Florian Weimer
* Mark Mitchell: > 1. What do we do if people do advertise jobs that are not free software > jobs, or not purely free software jobs? How pure is pure? Does "Port > GCC to proprietary OS" count as free or not? And: Does porting GCC to a new processor, to run on a free operating system, without e

Re: GCC Compiler Engineer job (I am not a recruiter)

2006-04-10 Thread Daniel Berlin
On Apr 10, 2006, at 5:23 PM, Mark Mitchell wrote: Mike Stump wrote: 3. How do we enforce any of these rules? Shame on those that violate them. I think we need to do better than that. If there's no viable enforcement mechanism, then people following the policy are at a disadvantage to tho

Re: GCC Compiler Engineer job (I am not a recruiter)

2006-04-10 Thread Mark Mitchell
DJ Delorie wrote: >> Here, if Company A and Company B both want to recruit, but A adheres >> to the policy while B does not, A loses. > > I think that's a compelling reason to keep it at "no ads". It seems like we're getting consensus around that approach, despite the initial sentiment in the ot

Re: GCC Compiler Engineer job (I am not a recruiter)

2006-04-10 Thread Diego Novillo
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 04/10/06 17:35, DJ Delorie wrote: > Thus, I vote with Jeff. > Likewise. Companies ought to send job ads to comp.compilers or use the FSF listing service. -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.2.2 (GNU/Linux) iD8DBQFEOtFpUTa2oAUaiwQRAj

Re: GCC Compiler Engineer job (I am not a recruiter)

2006-04-10 Thread DJ Delorie
> Here, if Company A and Company B both want to recruit, but A adheres > to the policy while B does not, A loses. I think that's a compelling reason to keep it at "no ads". We've got enough stress just developing gcc; we don't need the extra stress of corporate pressure to act against our fellow

Re: GCC Compiler Engineer job (I am not a recruiter)

2006-04-10 Thread Mark Mitchell
Mike Stump wrote: >> 3. How do we enforce any of these rules? > > Shame on those that violate them. I think we need to do better than that. If there's no viable enforcement mechanism, then people following the policy are at a disadvantage to those who are not. Traditional spam and things bette

Re: GCC Compiler Engineer job (I am not a recruiter)

2006-04-10 Thread Mike Stump
On Apr 10, 2006, at 1:29 PM, Mark Mitchell wrote: 1. What do we do if people do advertise jobs that are not free software jobs Ask them not to, ultimately the same thing we do with spammers. :-) or not purely free software jobs? If on the wiki, edit out all the parts that aren't and tell

Re: GCC Compiler Engineer job (I am not a recruiter)

2006-04-10 Thread Perry Smith
On Apr 10, 2006, at 3:39 PM, Jeffrey A Law wrote: On Mon, 2006-04-10 at 13:29 -0700, Mark Mitchell wrote: I'd rather not open the door to job postings, even for GCC I see myself as a consumer of this list and not a producer so it is hard to see myself as having a "vote". But if I do,

Re: GCC Compiler Engineer job (I am not a recruiter)

2006-04-10 Thread Jeffrey A Law
On Mon, 2006-04-10 at 13:29 -0700, Mark Mitchell wrote: > You and Mike have suggested that recruiting GCC developers is a > reasonable use of the list. Before we go to the SC, asking for approval > to change the policy, we should address some other issues: > > 1. What do we do if people do advert

Re: GCC Compiler Engineer job (I am not a recruiter)

2006-04-10 Thread Mark Mitchell
Joe Buck wrote: > I'm inclined to think that it serves gcc if the list can be used to > recruit people to work on gcc for pay. Of course an FSF list cannot > sanction offers for proprietary software development, and I wouldn't want > to see offers for unrelated software work. You and Mike have s

Re: GCC Compiler Engineer job (I am not a recruiter)

2006-04-10 Thread Joe Buck
On Mon, Apr 10, 2006 at 11:48:55AM -0700, Mark Mitchell wrote: > We have (had) a policy against these kinds of recruiting messages on the > GCC lists... > > Recently, there has your message, and Benjamin Kosnik's message about > internships -- so we need to either reconfirm the earlier policy, or

Re: GCC Compiler Engineer job (I am not a recruiter)

2006-04-10 Thread Mike Stump
On Apr 10, 2006, at 11:48 AM, Mark Mitchell wrote: Thoughts? We don't want to open the flood gates to random recruiters for random software, however, I never saw the harm in solicitations from gcc contributors for people to work on gcc. If we were to relax the current policy, we can have

Re: GCC Compiler Engineer job (I am not a recruiter)

2006-04-10 Thread Mark Mitchell
Rick Edwards wrote: > We are a strong and growing company working in some very advanced DSP > silicon. We have (had) a policy against these kinds of recruiting messages on the GCC lists. Instead, it was suggested that people work through the FSF's job-listing service. Unfortunately, I can't fin

GCC Compiler Engineer job (I am not a recruiter)

2006-04-07 Thread Rick Edwards
Hello, We are a strong and growing company working in some very advanced DSP silicon. I am not a headhunter. We are interested in people who have significant experience in modifying compilers. This role is ideal for someone who has good experience with GCC and GNU tools, but could work for someon

Re: Using gcc compiler on IXDP425 using eCos

2005-07-10 Thread Ian Lance Taylor
Rohit Agarwal <[EMAIL PROTECTED]> writes: > As till now, I have been successful in making test programs run on the > IXDP425 board compiled using a gcc compiler. Does that mean that I > have ported eCos on the hardware? I know its a very silly question but > since this is t

Using gcc compiler on IXDP425 using eCos

2005-07-09 Thread Rohit Agarwal
un on the IXDP425 board compiled using a gcc compiler. Does that mean that I have ported eCos on the hardware? I know its a very silly question but since this is the first time I am working with hardware, I dont know much. Also, I am supposed to connect 2 GSM modems through the serial ports and a

Re: GCC Compiler

2005-05-31 Thread sjhill
> I am doing a study about compilers. I have to monitor many existing > compilers and benchmark them. After I have to modify and optimize the > 'back-end' part for multithreads models. > You should go look at Scott's site (http://www.coyotegulch.com/) as he does a lot of benchmarking. > I have

GCC Compiler

2005-05-31 Thread Thomas Bernard
Dear Sir, My name is Thomas Bernard. I am working as a Master Student for the UvA (Universitat Van Amsterdam) in the section of Computers Systems Architecture of the Informatics Institute. I am doing a study about compilers. I have to monitor many existing compilers and benchmark them. After