home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog_c / cc.lzh / CC / MANX / CC.DOC < prev    next >
Encoding:
Text File  |  1991-11-01  |  1.3 KB  |  40 lines

  1. compiler options:
  2. -a        generate .asm file; do not assemble 
  3. -c        generate .o object file(s) only; do not link
  4. -dsym[=val]    define preprocessor symbol
  5. -idir        define directory to search for include files
  6. -s        print warning messages only; don't compile
  7. -t        put C source statements in assembly code
  8. -enum        use expression table of size num
  9. -lnum        use local symbol table of size num
  10. -ynum        use case table of size num
  11. -znum        use literal table of size num
  12. +b        don't put \"public.begin\" in ass'y code
  13. +c        use large code memory model
  14. +d        use large data memory model
  15. +hfile        write symbol table to file
  16. +ifile        read pre-compiled symbol table from file
  17. +l        make int and constants 32 bits long
  18. -p        just print out the commands; don't do them
  19. +q        put char string constants in data segment
  20.  
  21. assembler options:
  22. -i        define directory in which to search for include files
  23. -l        generate listing
  24. -n        don't optimize object code
  25. -snum        use squeeze table of size num
  26. -v        verbose - show memory usage
  27. -zap        delete input file when done
  28. +c or +d    see above
  29. -ename[=val]    put entry in symbol table for name
  30.  
  31. linker options:
  32. -lname        search name.lib for needed modules
  33. -f file        read commands from file
  34. -t        produce ascii symbol table
  35. -w        produce wack symbol table
  36. -v        be verbose
  37. +O[i]        place code in segment i
  38. +C[cdb]        load program section in chip memory
  39. +F[cdb]        load (code,data,bss) into fast memory
  40.