On Wed, Nov 14, 2001 at 01:50:28PM -0800, Robert Lee wrote: > I got this error message but I don't know how to fix > it. Have you seen these messages before? I am using > gcc 2.96
Be sure to upgrade to the latest version. > > gcc -v > Reading specs from > /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs > gcc version 2.96 20000731 (Red Hat Linux 7.0) > > > > gcc -O2 -s -o Jflash-linux Jflash.cpp If the extension is .cpp, the compiler thinks it's a C++ file, which is certainly not the case for Jflash. Rename the file to Jflash.c, or use the "-x c" flag to tell the compiler it is actually C source. [snip] > Please submit a full bug report. > See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions. ^^^^^^^^^^^^^^^^^ That's wrong. Bug reports should go to Red Hat because this is a Red Hat compiler (gcc-2.96 was never released by the gcc team). Erik -- J.A.K. (Erik) Mouw, Information and Communication Theory Group, Faculty of Information Technology and Systems, Delft University of Technology, PO BOX 5031, 2600 GA Delft, The Netherlands Phone: +31-15-2783635 Fax: +31-15-2781843 Email: [EMAIL PROTECTED] WWW: http://www-ict.its.tudelft.nl/~erik/ _______________________________________________ http://lists.arm.linux.org.uk/mailman/listinfo/linux-arm Please visit the above address for information on this list.
