Share via


/Fe - Rename Executable File

This option allows you to rename the compiler-created executable file. By default, the compiler names the executable file with the base name of the first file, source or object, on the command line, plus the extension .exe. The /Fe option lets you give the executable file a different name or create it in a different directory.

/Fefilename

The /Fe option applies only in the linking stage. If you specify the /c - Compile Without Linking option to suppress linking, /Fe has no effect.

The following example compiles and links all source files with the extension .c in the current directory. The resulting executable file is named Process.exe and is created in the directory C: \Bin.

CLxxx /FeC:\BIN\PROCESS *.C

Where CLxxx is the name of the compiler for the target processor family.

See Also

About Microprocessor Compilers | ARM Guide | Hitachi Guide | MIPS Guide

 Last updated on Thursday, April 08, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.