This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: gcc 3.5 integration branch proposal


Nick Burrett wrote:

There's no harm in that. I have a port of GCC 3.3.3 running on a 200MHz StrongARM that takes over 6 minutes to compile the following:

#include <iostream>

   int main (void)
   {
     std::cout << "Hello World" << std::endl;
     return 0;
   }

GCC 2.95.4 compiled the same application on the same hardware in around 20-30 seconds.

You're comparing apples and oranges. These are *not* the same application, as the <iostream> headers are much more complicated. This is due to requirements in the C++ standard. -- --Per Bothner per@bothner.com http://per.bothner.com/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]