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 2681010c2b0fae8527a8744c879895625b7ee9ff..639b9ee404130421156fcbe7a5f32da450da8bd2 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 ```