home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c120 / 2.ddi / PREPROC.DOC < prev    next >
Encoding:
Text File  |  1990-01-12  |  1.7 KB  |  31 lines

  1. ============================================================================
  2.              NOTES FOR ADVANCED USERS ON LANGUAGE PREPROCESSORS
  3. ============================================================================
  4.  
  5. The language or "external" preprocessor option in CLEAR gives results that
  6. are dependent on the actual preprocessor invoked.
  7.  
  8. The TURBO C preprocessor CPP.EXE does not halt with a "fatal error" when an
  9. include file cannot be found.  Thus, CPP will produce listings in the
  10. majority of cases (but if a critical include file is missing, they may not
  11. be correct).  You can always run the "internal" preprocessor to check for
  12. missing include files.  (Or, you can try DCPP.EXE)  The TURBO C preprocessor
  13. does not have an option for passing comments through, so these will not
  14. be available in listings from this language preprocessor option.
  15.  
  16. The MICROSOFT C preprocessor "CL /E /C" does halt if an include file
  17. cannot be found.  If you are missing an include file, you can make a "dummy"
  18. include file of the same name (with no entries) or you can use the "internal"
  19. preprocessor (which does not halt).  MSC 5.0's preprocessor option did not
  20. handle source line number passing correctly; this was corrected in MSC 5.1.
  21.  
  22. The DECUS C preprorocessor DCPP also halts if an include file cannot be
  23. found.  Proceed as with MSC.
  24.  
  25. The #line reading mechanism for both the MSC and DCPP (which is used to
  26. synchronize source and intermediate file line numbers) follows the most
  27. common convention.  If you are using another preprocessor, and it takes the
  28. same command line flags (/C /E filename.c for MSC or -C filename.c for DCPP)
  29. try one of these "Language" selections and rename your preprocessor.
  30.  
  31.