Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 2.37 KB

compiler-command-line-syntax.md

File metadata and controls

40 lines (33 loc) · 2.37 KB
title ms.custom ms.date ms.technology ms.topic dev_langs helpviewer_keywords ms.assetid author ms.author ms.workload
Compiler Command-Line Syntax | Microsoft Docs
11/04/2016
cpp-tools
reference
C++
syntax, CL compiler command line
cl.exe compiler, command-line syntax
acba2c1c-0803-4a3a-af25-63e849b930a2
corob-msft
corob
cplusplus

Compiler Command-Line Syntax

The CL command line uses the following syntax:

CL [option...] file... [option | file]... [lib...] [@command-file] [/link link-opt...]  

The following table describes input to the CL command.

Entry Meaning
option One or more CL options. Note that all options apply to all specified source files. Options are specified by either a forward slash (/) or a dash (-). If an option takes an argument, the option's description documents whether a space is allowed between the option and the arguments. Option names (except for the /HELP option) are case sensitive. See Order of CL Options for more information.
file The name of one or more source files, .obj files, or libraries. CL compiles source files and passes the names of the .obj files and libraries to the linker. See CL Filename Syntax for more information.
lib One or more library names. CL passes these names to the linker.
command-file A file that contains multiple options and filenames. See CL Command Files for more information.
link-opt One or more linker options. CL passes these options to the linker.

You can specify any number of options, filenames, and library names, as long as the number of characters on the command line does not exceed 1024, the limit dictated by the operating system.

For information about the return value of cl.exe, see Return Value of cl.exe .

Note

The command-line input limit of 1024 characters is not guaranteed to remain the same in future releases of Windows.

See Also

Setting Compiler Options
Compiler Options