home *** CD-ROM | disk | FTP | other *** search
- ============================================================================
- NOTES FOR ADVANCED USERS ON LANGUAGE PREPROCESSORS
- ============================================================================
-
- The language or "external" preprocessor option in CLEAR gives results that
- are dependent on the actual preprocessor invoked.
-
- The TURBO C preprocessor CPP.EXE does not halt with a "fatal error" when an
- include file cannot be found. Thus, CPP will produce listings in the
- majority of cases (but if a critical include file is missing, they may not
- be correct). You can always run the "internal" preprocessor to check for
- missing include files. (Or, you can try DCPP.EXE) The TURBO C preprocessor
- does not have an option for passing comments through, so these will not
- be available in listings from this language preprocessor option.
-
- The MICROSOFT C preprocessor "CL /E /C" does halt if an include file
- cannot be found. If you are missing an include file, you can make a "dummy"
- include file of the same name (with no entries) or you can use the "internal"
- preprocessor (which does not halt). MSC 5.0's preprocessor option did not
- handle source line number passing correctly; this was corrected in MSC 5.1.
-
- The DECUS C preprorocessor DCPP also halts if an include file cannot be
- found. Proceed as with MSC.
-
- The #line reading mechanism for both the MSC and DCPP (which is used to
- synchronize source and intermediate file line numbers) follows the most
- common convention. If you are using another preprocessor, and it takes the
- same command line flags (/C /E filename.c for MSC or -C filename.c for DCPP)
- try one of these "Language" selections and rename your preprocessor.
-
-