Keil编译设置里的“fromelf.exe --bin -o “[email protected]“ “#L“到底什么意思?

% File name with extension (PROJECT1.UVPROJ)
# File name with extension and complete path specification (C:\MYPROJECT\PROJECT1.UVPROJ)
@ File name without extension or path specification (PROJECT1)
$ Path name of a file. Path names get extended with a backslash. For example, $P could generate C:\MYPROJECT.
L Linker output file. Typically the executable file used for debugging (PROJECT1).

据上: “[email protected]“ “#L中
$L:表示生成的链接文件的路径
@L: 表示生成的链接文件的文件名,但不包含扩展名
#L:表示生成的链接文件的完整路径名及文件名

完整的意思就是将生成的链接文件转化成bin文件,生成文件所在的的路径不变,名字不变,仅扩展名变为bin。

注意,为使以上指令能正确执行,在下图1处,不能添加后辍,不能写成app.hex、app.bin等,因为会自动编译生成app.axf可执行文件,.axf后辍会自动加上。否则此指令会执行错误。
在这里插入图片描述

Keil编译设置里的“fromelf.exe --bin -o “$L@L.bin“ “#L“到底什么意思?_第1张图片

你可能感兴趣的:(编译,C/C++,MCU,arm)