> -----Original Message----- > From: > [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > org] On Behalf Of Andrew Hutchinson > Sent: Tuesday, January 15, 2008 6:13 PM > To: [email protected] > Subject: [avr-gcc-list] Cygwin GCC build cc1.exe file size > > My build of gcc under windows (cygwin) give file size for > cc1.exe of 22MB > > Winavr is much smaller (200K). > > Is this normal or do I need to strip files?
Yes, it is normal, in that debugging info is normally included in the executable. Yes, use strip to strip the executable to make it smaller. BTW, I have posted the patches, on the WinAVR CVS repository, that I use to build the toolchain using MinGW/MSYS. That way the executables aren't linked to the Cygwin DLL. Eric Weddington _______________________________________________ AVR-GCC-list mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/avr-gcc-list
