如何在 Ubuntu 中的代码块中生成 .out?
我刚刚转移到ubuntu。早些时候,我曾经在 Windows 的代码块中编写代码。使用它进行编译。但是从控制台运行 exe,如 abc.exe
abc.exe
abc.exe
abc.exe
abc.exe
abc.exe
输入.in
。讨厌再次给出输出&再次。在 Ubuntu 中我安装了 CodeBlocks for Ubuntu,但在 Linux 中它也会生成 .exe 和 .o,据我所知,它们在 Linux 中不起作用。 我也知道我必须像 ./abc.out < 一样运行输入.in
。所以现在我想要代码块生成.out。如果这不可能,请建议其他方法。
I have just shifted to ubuntu. Earlier I used to write my code in Code Blocks for windows. Compile using it. But running the exe from the console as in abc.exe < input.in
. Hated giving output again & again. Following it in Ubuntu I installed CodeBlocks for Ubuntu but in linux as well it generates .exe and .o which do not works in linux according to my knowledge.
Also I know that I have to run like ./abc.out < input.in
. So now I want code blocks to generate .out. If this is not possible please suggest Some other method.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我正确理解你的问题,你想知道如何在编译时命名可执行文件。如果是这样,您可以对
gcc(1)
使用-o
标志:If I understood your question correctly, you want to know how to name an executable while compiling it. If so, you can use the
-o <filename>
flag togcc(1)
: