Some common problems possible with DJGPP port of gcc-2.8.1. Look DJGPP FAQ
for info about other problems. 

RHIDE-1.4

   Q) When trying to link C++ program RHIDE-1.4 returns error message
      ld.exe: cannot open -lstdcx: No such file or directory (ENOENT)

   A) The name of C++ library has changed since port of gcc-2.7.2.1.
      The fix for this problem is add line

      RHIDE_TYPED_LIBS_DJGPP.cc=stdcxx  
         
      to %DJDIR/share/rhide/rhide.env. Or add 2 lines

      [rhide]         
      RHIDE_TYPED_LIBS_DJGPP.cc=stdcxx  
   
      to Your DJGPP.ENV. An example of DJGPP.ENV with this fix is in
      directory gnu/gcc-2.81 (archive gcc281b.zip)

Exceptions handling

   Q) I'm getting SIGABRT instead of correct reaction to throw?
   A) This is most likely caused by reading old specs file from
      %DJDIR%/lib. Best is to get remove it as DJGPP port of gcc-2.8.1
      already contains specs file. See file readme.djgpp for more info.

   Q) I'm getting message about unresolved symbol from crtf.o
          c:\djgpp\lib\gcc-lib\djgpp\2.81\crtf.o(.text+0x9):crtfgo32.c: 
          undefined reference to `__EH_FRAME_BEGIN__'
   A) You are using old linker script (djgpp.djl) from $DJDIR/lib. Read file
      readme.djgpp for more info. Best is to get rid of it. Check also       
      whether You are using correct specs file (hint: use command line 
      option -v to gcc). See file readme.djgpp for more info.

    