home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1997 April / macformat-049.iso / mac / Shareware Plus / Developers / dropg++ / BUGS⁄TO DO next >
Encoding:
Text File  |  1996-10-31  |  1.2 KB  |  34 lines  |  [TEXT/ttxt]

  1. BUGS
  2.  
  3. there is no passing of error codes back to the calling application
  4. when you use vfork()/execve()/wait4()
  5. this means that if you get a source syntax error, gcc will try
  6. to carry on anyway
  7.  
  8. there is no way to save stdout/stderr/cout/cerr if you have more than a screenful
  9. (except by programming in some freopen() commands)
  10.  
  11. if multiple programs run, only the last one will save its output
  12.  
  13. undefined symbols in most cases will not be found till execution
  14.  
  15. ld is a memory hog
  16.  
  17. you cannot set up application partition sizes and signature, these are always
  18. copied from the defaults in the ld application.
  19.  
  20. there is no co-processor maths support.
  21.  
  22. a good number of system calls are unimplmented due to laziness
  23. (see the file stubs.c in usr:src:mac)
  24.  
  25. if the calling application is at the front, it may get stuck, until you click
  26. on the desktop to manually cause a context switch.
  27.  
  28. since all the tools have the signature 'TEST', the finder will get confused 
  29. about which one to use if you double click a 'TEST' document unless the
  30. application is already launched.
  31.  
  32. It might be an idea to restart your machine after using this program in case there
  33. are memory leaks which could interfere with other applications.
  34.