我在使用 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"]
}
没有成功。想法?