使用 gcc 和 SciTE 编译代码?

发布于 2024-07-26 03:11:36 字数 299 浏览 8 评论 0原文

我正在尝试使用 SciTE 从外部源编译 C/C++ 代码。 SciTE 有一个内置功能,可以在同一文件夹中搜索 gcc 编译器和库。 如果我尝试从外部从 SciTE 进行编译,就会出现问题。 使用 F5(编译并运行)或 CTRL-F7(编译)进行编译会导致 SciTE 无法找到编译器。

我想知道是否有一种方法(总是有)将 gcc 编译器的路径嵌入到 SciTE 的文件之一中,而无需重写 SciTE 的代码?

编辑:在 Linux 中找到了解决方案。

I'm trying to compile C/C++ code from an external source using SciTE. The SciTE has a built-in feature where it searches for the gcc compiler and libraries in the same folder. The problem occurs if I try to compile from SciTE externally. Compiling with F5 (compile and run) or CTRL-F7 (compile) results in SciTE not being able to find the compiler.

I'm wondering if there is a way (there always is) to embed the gcc compiler's path into one of SciTE's files without generally rewriting SciTE's code?

EDIT: Found a solution in Linux.

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

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

发布评论

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

评论(2

野心澎湃 2024-08-02 03:11:36

我使用 MinGW 作为外部源在 scite 中编译 C 和 C++ 代码。

如果您没有 MinGW,您可以在此处获取 MinGWhttp://sourceforge.net/projects/mingw/files/Installer/mingw-get-inst/

  • 如果安装到包含空格的目录中,mingw 可能会出现问题。

  • 安装MinGW后将bin目录添加到系统路径环境变量中。

    • 转到控制面板。
    • 系统
    • 高级系统设置
    • 点击环境变量选项卡
    • 将 MinGW 的 bin 目录添加到路径系统变量列表中。
    • 默认目录:“C:\MinGW\bin”

在 scite 中:

  • 打开 cpp.properties
  • 搜索:cc=g++ $(ccopts) -c $(FileNameExt) -o $(FileName) .o
  • 将g++部分改为MinGW的bin目录加上编译器exe ex:
    • cc=C:\MinGW\bin\g++.exe $(ccopts) -c $(FileNameExt) -o $(FileName).o
  • 对于 gcc 编译更改 ccc= gcc.exe $(ccopts) -c $(FileNameExt) -o $(FileName).occc=C:\MinGW\bin\gcc $(ccopts) -c $(FileNameExt) - o $(FileName).o
  • 现在搜索 command.go.$(file.patterns.cplusplus)=./$(FileName)
  • 将其更改为 command.go。 $(file.patterns.cplusplus)=$(FileName).exe
  • 对于 gcc 编译,搜索 command.go.*.c=./$(FileName) 并进行类似的更改。
  • 将更改保存到文件

请注意,您可能必须先更改 scite 文件夹中的权限,然后才能将更改保存到 cpp.properties

您的代码现在可以编译(使用 shift+F7)并运行(F5) 。

I used MinGW as an external source to compile in C and C++ code in scite.

If you do not have MinGW you can get MinGW here: http://sourceforge.net/projects/mingw/files/Installer/mingw-get-inst/

  • mingw may have problems if installed into directories containing spaces.

  • After installing MinGW add the bin directory to sysytem path environment variables.

    • Go to Control pannel.
    • System
    • Advanced system settings
    • Click on the Environment Variables tab
    • Add the MinGW's bin directory to the path system variables list.
    • Default directory: "C:\MinGW\bin"

In scite:

  • Open cpp.properties
  • Search for: cc=g++ $(ccopts) -c $(FileNameExt) -o $(FileName).o
  • Change the g++ part to MinGW's bin directory plus compiler exe ex:
    • cc=C:\MinGW\bin\g++.exe $(ccopts) -c $(FileNameExt) -o $(FileName).o
  • For gcc compiling change ccc=gcc.exe $(ccopts) -c $(FileNameExt) -o $(FileName).o to ccc=C:\MinGW\bin\gcc $(ccopts) -c $(FileNameExt) -o $(FileName).o
  • Now search for command.go.$(file.patterns.cplusplus)=./$(FileName)
  • Change it to command.go.$(file.patterns.cplusplus)=$(FileName).exe
  • For gcc compiling search for command.go.*.c=./$(FileName) and change it similarly.
  • Save the changes to file

Please note that you may have to change permissions in the scite folder before you will be able to save the changes to cpp.properties

Your code will now be able to compile (use shift+F7) and run(F5).

走过海棠暮 2024-08-02 03:11:36

转到选项 -> cpp.properties->; 转到第 303 行或找到以下行:

cc=g++ $(ccopts) -c $(FileNameExt) -o $(FileName).o

下一行将用于 gcc 选项。

现在设置 gcc 或 g++ 的完整路径,如下所示,

ccc=D:\Dev-Cpp\bin\gcc.exe $(ccopts) -c $(FileNameExt) -o $(FileName).o

在上面的行 D:\ Dev-Cpp\bin\gcc.exe 是我系统上 gcc 的路径。 您可以通过根据自己安装的 gcc 编辑路径来执行类似的操作。 设置好后编写程序并编译。

注意:还有其他选项供您设置,例如用于编译程序的标准。

我希望它有帮助。

Go to options -> cpp.properties -> goto line 303 or find the following line:

cc=g++ $(ccopts) -c $(FileNameExt) -o $(FileName).o

next line will be for gcc option.

Now set full path for gcc or g++ as follows,

ccc=D:\Dev-Cpp\bin\gcc.exe $(ccopts) -c $(FileNameExt) -o $(FileName).o

In the above line D:\Dev-Cpp\bin\gcc.exe is the path for gcc on my system. You can do the similar thing by editing the path according to your own installation of gcc. Once set write a program and compile.

Note: There are other options for you to set for example the standard to use for compiling your programs.

I hope it helps.

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