You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
424 B

7 years ago
ld
===
将目标文件连接为可执行程序
## 补充说明
**ld命令** 是GNU的连接器将目标文件连接为可执行程序。
### 语法
```
ld(选项)(参数)
```
### 选项
```
-o指定输出文件名
-e指定程序的入口符号。
```
### 参数
目标文件:指定需要连接的目标文件。
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->