C 语言的简单 IDE,将我的程序链接到 gcc

发布于 2024-10-11 03:21:12 字数 224 浏览 3 评论 0原文

我想写一个简单的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 技术交流群。

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

发布评论

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

评论(2

你又不是我 2024-10-18 03:21:12

您不需要“链接”到 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.

无可置疑 2024-10-18 03:21:12

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

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