mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 14:11:48 -06:00
22 lines
1.0 KiB
Plaintext
22 lines
1.0 KiB
Plaintext
HI-TECH Z80 CP/M C compiler options:
|
||
|
||
-A Generate a self-relocating .COM program.
|
||
-C Generate object code only; don't link.
|
||
-CR Produce a cross-reference listing e.g. -CRfile.crf
|
||
-D Define a symbol, e.g. -DDEBUG=1
|
||
-E Specify executable output filename, e.g. -Efile.com
|
||
-Ffile Generate a symbol file for debug.com or overlay build (default L.SYM)
|
||
-H Output help (the OPTIONS file) and exit.
|
||
-I Specify an include directory, e.g. -I1:B:
|
||
-L Scan a library, e.g. -LF scans the floating point library.
|
||
-M Generate a map file, e.g. -Mfile.map
|
||
-N Use the NRTCPM.OBJ start-up with minimal _getargs().
|
||
-O Invoke the peephole optimizer (reduced code-size)
|
||
-OF Invoke the optimizer for speed (Fast)
|
||
-S Generate assembler code in a .AS file; don't assemble or link.
|
||
-U Undefine a predefined symbol, e.g. -UDEBUG
|
||
-V Be verbose during compilation.
|
||
-W Set warning level, e.g. -w5 or -w-2
|
||
-X Suppress local symbols in symbol tables.
|
||
-Y Generate an overlay output file (.OVR file-type)
|
||
|