From 5a87f817442831ab72bc424de0d21a67d752487d Mon Sep 17 00:00:00 2001 From: lishengbao <563167901@qq.com> Date: Mon, 1 Aug 2022 03:35:38 +0000 Subject: [PATCH] Fix issue I4X0XA --- .../\344\275\277\347\224\250GCC\347\274\226\350\257\221.md" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/docs/zh/docs/ApplicationDev/\344\275\277\347\224\250GCC\347\274\226\350\257\221.md" "b/docs/zh/docs/ApplicationDev/\344\275\277\347\224\250GCC\347\274\226\350\257\221.md" index 2681010c2..639b9ee40 100644 --- "a/docs/zh/docs/ApplicationDev/\344\275\277\347\224\250GCC\347\274\226\350\257\221.md" +++ "b/docs/zh/docs/ApplicationDev/\344\275\277\347\224\250GCC\347\274\226\350\257\221.md" @@ -248,7 +248,7 @@ GCC是一个功能强大的编译器,其 _options_ 参数取值很多,但有 ``` $ gcc -c test1.c $ gcc -c test2.c - $ gcc -o test1.o test2.o -o test + $ gcc test1.o test2.o -o test ``` -- Gitee