We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
关于gcc的多文件编译的第二种方式的介绍中,有一行命令有误:
gcc -o testfun.o test.o -o test //将testfun.o和test.o链接成test
正确语句应该为
gcc testfun.o test.o -o test
The text was updated successfully, but these errors were encountered:
Update gcc.md (#418)
bb830bc
@hrQAQ 已修复
Sorry, something went wrong.
[v1.11.2] Update gcc.md (#418) bb830bc
013f912
No branches or pull requests
关于gcc的多文件编译的第二种方式的介绍中,有一行命令有误:
gcc -o testfun.o test.o -o test //将testfun.o和test.o链接成test
正确语句应该为
gcc testfun.o test.o -o test
The text was updated successfully, but these errors were encountered: