The C++ Compiler
Table of Contents
Usage
vcp1.exe [-i] [-h] [-gn] [-Wn]
[-wn] [-en] [-Vn] [-n] <infile> [-o<outfile>]
Description
vcp1.exe reads a C++ file after it has been preprocessed, performs
optimization, and generates an input assembler file. If no file arguments are
given, vcp1.exe reads from stdin and writes to stdout. If one file
argument is used, it is assumed to be the input file.
Options
- -i
- Get information about the compiler version.
- -h
- Print help message.
- -o<outfile>.asm
- Use <outfile>.asm as the name of the output assembler file.
- -g<mode>
- Enable debug info:
- 0 - no debug info
- 1 - line number info only
- 2 - full debug info
- -W(n)
- Set warning level (default n=1)
- -w(n)
- Issue no more than n warnings (default n=8)
- -e(n)
- Issue no more than n errors (default n=8)
- -V(n)
- Bytecode.dl Version compatibility
- -n
- Generate 'native' processor opcodes
|
|