Specifying Object Files

You can use the /Fo option (Windows*) or -c and -o options (Linux*) to specify an alternate name for an object file. In this example, the compiler generates an object file name myobj.obj (Windows) or myobj.o (Linux).

Examples:

This content is specific to C++; it does not apply to DPC++.

// Linux
icpx -c -omyobj.o x.cpp 
// Windows
icx /Fomyobj x.cpp 

This content is specific to DPC++.

// Linux
dpcpp -c -omyobj.o x.cpp 
// Windows
dpcpp /Fomyobj x.cpp 

See Also