C 语言的简单 IDE,将我的程序链接到 gcc
我想写一个简单的C IDE,我写了其中的一些部分。 它可以检查C的语法,现在我需要将我的程序链接到gcc,以生成可执行文件。 现在我的程序可以获取您输入的内容,然后将其保存为任何格式(例如记事本) 现在我想说g++来制作可执行文件,我该怎么做? (例如)当用户保存他/她的文件然后在我的程序中键入“编译它”时,g++ 会执行此操作并将可执行文件保存在程序需要或显示错误的位置。 我该怎么做呢? 我想为 Windows 操作系统编写它。
I want write simple C IDE,I wrote some parts of it.
It can check syntax of C,now I need to link my program to gcc,to make executable file.
Now my program can get what you have entered ,then save it in any format(like notepad)
Now I want to say g++ to make executable file,how can I do it?
(For E.g) when user save his/her file then type 'compile it' in my program ,g++ do it and save executable file where program want or shows errors.
How can I do it?
I want to program it for Windows OS.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不需要“链接”到 gcc,而是在子进程中调用它。这通常是使用 fork() 和 exec() 完成的,向 gcc 提供完整的命令行,以便它知道要编译什么、如何编译以及在哪里存储对象或可执行文件结果。
你没有提到你的操作系统,但正如你提到的 gcc 我会假设 Linux;看看这个教程,但还有更多。
You don't need to "link" to gcc, instead you will invoke it in a sub-process. This is generally done using fork() and exec(), supplying the full command line to gcc so it knows what to compile, how to compile it and where to store the object or executable file result.
You don't mention your Operating System, but as you mentioned gcc I will assume Linux; have a look at this tutorial, but there many more out there.
GCC 只能从 shell 调用,有关 IDE 内的编译器功能,请查看 libclang 项目:
http://llvm.org/devmtg/2010-11/Gregor-libclang.pdf
GCC can only be invoked from a shell, for compiler functionality inside an IDE look at the
libclang
project:http://llvm.org/devmtg/2010-11/Gregor-libclang.pdf