From mboxrd@z Thu Jan 1 00:00:00 1970 From: Xianglong Huang To: egcs-bugs@cygnus.com Subject: Bug report Date: Sun, 28 Feb 1999 23:30:00 -0000 Message-id: X-SW-Source: 1999-02n/msg00489.html List-Id: When I use 'make' I got the following output: g++ -DSOLARIS -o readwrite ../ThreadClass.o ReadWrite.cpp -I../ -g In file included from ReadWrite.cpp:7: ../ThreadClass.h:703: Internal compiler error 892. ../ThreadClass.h:703: Please submit a full bug report to `egcs-bugs@cygnus.com'. *** Error code 1 make: Fatal error: Command failed for target `readwrite' After I check the program I find I forgot to include file and use the following function definition: template int ShareMem::GetState(struct shmid_ds *buf) { ... } Then the error message happens. Perhaps it's the bug. Long