Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我开始在 windows 中使用 emacs 编辑器编写 cpp 程序。
我想知道我需要哪些其他软件才能完全在 emacs 中运行这些程序。我需要知道在哪里可以找到 cpp 程序中包含的常用 h 文件以及将它们放在哪里。
我迷失在谷歌搜索中,需要程序员的建议。之前,我在 CodeBlocks 工作,但现在我想切换到 emacs。
使用 Emacs,您可以将 shell 执行到帧中。您只需使用 Cx 2 或 Cx 3 分割您的屏幕,然后键入 Mx shell 来启动 shell...在那里,您可以调用 gcc 来构建您的应用程序(或您的 Makefile),然后执行他(./a 。出去)
使用“Mx shell”来启动一个shell,然后输入./a.out(或者你的程序被调用的任何东西)。如果您使用的是 linux 机器,则不需要额外的东西。