如何编译完成直接执行

发布于 2022-10-15 10:19:52 字数 96 浏览 62 评论 0

不想使用  gcc a.c  && ./a.out
能不能不出现 ./a.out

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

佞臣 2022-10-22 10:19:52

-o file
           Place output in file file.  This applies regard-
           less to whatever sort of output is being pro-
           duced, whether it be an executable file, an
           object file, an assembler file or preprocessed C
           code.

           If -o is not specified, the default is to put an
           executable file in a.out, the object file for
           source.suffix in source.o, its assembler file in
           source.s, a precompiled header file in
           source.suffix.gch, and all preprocessed C source
           on standard output.

说谎友 2022-10-22 10:19:52

我的意思是不希望出现 ./*.out
即编译完就执行, 二进制文件最好不出现

檐上三寸雪 2022-10-22 10:19:52

我的意思是不希望出现 ./*.out
即编译完就执行, 二进制文件最好不出现

哎呦我呸! 2022-10-22 10:19:52

你以为是脚本啊
可以直接执行

っ〆星空下的拥抱 2022-10-22 10:19:52

写个makefile

梦年海沫深 2022-10-22 10:19:52

类是于这样的
gcc a.c -o - | eval -
但这个执行不了

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文