Questions tagged [gcc3]

Version 3.x of GCC (GNU Compiler Collection). GCC is the de facto standard C compiler on Linux (though version 3 is not used in modern versions of Linux). The compiler collection supports many other languages and platforms as well.

Version 3.0 was released on 2001-06-18. Version 3.4.6 was released on 2006-03-06.

See also:

33 questions
0
votes
3 answers

gcc reports "will never be executed" about the line: while(fgets(line, MAX_LINE, stdin) != NULL)

I'm looking for an explanation why gcc are giving this warning for me. I'm compiling with the gcc-3 on cygwin with the -Wunreachable-code flag, and the gcc says this warning for me: main.c:223: warning: will never be executed That's this line:…
Jack
  • 16,276
  • 55
  • 159
  • 284
0
votes
1 answer

Space determine for a C program

Can I determine the space taken by a C program. Currently I am using GCC compiler on WIndows XP. Actually I want to check how much space consume by the C program. It is very good if some function tell me the size consume by other function in C. ex-…
Code Breaker
  • 499
  • 1
  • 4
  • 19
0
votes
1 answer

gcc 3.4 internal compiler error with std::map.find

has anybody come across the following error with gcc 3.4, boost 1.34.1 The conflicting code is along the lines of: class Symbol { /// ... bool operator<( const Symbol& rhs ) const; }; typedef boost::function< double( const XYZ::Date& ) > F; typedef…
user1357687
  • 571
  • 1
  • 6
  • 9
1 2
3