Skip to content

Commit 246522a

Browse files
committed
no-carg
1 parent e5d0518 commit 246522a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/platform.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,15 @@ C++ 源码 `.cpp` 是写给人类看的!计算机并不认识,计算机只
5151
### MSVC
5252

5353
```bash
54-
cl.exe /c main.cpp
54+
cl.exe main.cpp
5555
```
5656

5757
这样就可以得到可执行文件 `main.exe` 了。
5858

5959
### GCC
6060

6161
```bash
62-
g++ -c main.cpp -o main
62+
g++ main.cpp -o main
6363
```
6464

6565
这样就可以得到可执行文件 `main` 了。

0 commit comments

Comments
 (0)