1

我在使用 Sublime Text2 作为编辑器的 Linux 64 位上使用 ifort 11.1。我想知道,如何创建自定义构建命令来编译代码?我还需要知道如何生成与源文件同名的输出。例如,我想将以下命令复制到自定义构建系统中:

ifort mycode.f90 -o mycode

到目前为止,我尝试过:

{
"cmd": ["ifort","$file"],
"selector": ["iFort"],
"path":["/usr/local/Compiler/11.1/080/bin/intel64/ifort intel64"]
}

没有成功。想法?

4

1 回答 1

2

This seems to work:

"cmd": ["ifort","$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.fortran90"
于 2013-03-19T16:42:29.470 回答