Skip to content

Commit

Permalink
将 各平台文件格式 移动到 编译链接
Browse files Browse the repository at this point in the history
  • Loading branch information
huihut committed Aug 14, 2018
1 parent c271eb0 commit c6f3ff4
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2467,14 +2467,6 @@ ssize_t write(int fd, const void *buf, size_t count);
## 链接装载库
### 各平台文件格式
平台 | 可执行文件 | 目标文件 | 动态库/共享对象 | 静态库
---|---|---|---|---
Windows|exe|obj|dll|lib
Unix/Linux|ELF、out|o|so|a
Mac|Mach-O|o|dylib、tbd、framework|a、framework
### 内存、栈、堆
一般应用程序内存空间有如下区域:
Expand Down Expand Up @@ -2511,6 +2503,14 @@ Mac|Mach-O|o|dylib、tbd、framework|a、framework
### 编译链接
#### 各平台文件格式
平台 | 可执行文件 | 目标文件 | 动态库/共享对象 | 静态库
---|---|---|---|---
Windows|exe|obj|dll|lib
Unix/Linux|ELF、out|o|so|a
Mac|Mach-O|o|dylib、tbd、framework|a、framework
#### 编译链接过程
1. 预编译(预编译器处理如 `#include`、`#define` 等预编译指令,生成 `.i` 或 `.ii` 文件)
Expand Down

0 comments on commit c6f3ff4

Please sign in to comment.