ZHCU947E June 2015 – January 2023
当没有遇到错误时,链接器会创建一个输出模块。如果您没有为输出模块指定文件名,则链接器会为其提供默认名称 a.out。如果要将输出模块写入其他文件,请使用 --output_file 选项。--output_file 选项的语法为:
--output_file= filename
filename 是新输出模块的名称。
以下示例将链接 file1.c.obj 和 file2.c.obj,并创建一个名为 run.out 的输出模块:
cl6x --run_linker --output_file=run.out file1.c.obj file2.c.obj