SublimeFortran
SublimeFortran copied to clipboard
The glitch on the build system [Win 10]?
I cannot build or run until I changed the '
to \"
in shell_cmd lines in GFortran.sublime-build.
Have no idea it's only my machine's problem or this issue has occurred on all windows platform.
{
"shell_cmd": "gfortran \"${file}\" -o \"${file_path}/${file_base_name}\"",
"file_regex": "^(?xi:( ^[/] [^:]* ) : (\\d+) : (\\d+) :)",
"working_dir": "${file_path}",
"selector": "source.modern-fortran, source.fixedform-fortran",
"syntax": "GFortranBuild.sublime-syntax",
"variants":
[
{
"name": "Run",
"shell_cmd": "gfortran \"${file}\" -o \"${file_path}/${file_base_name}\" && \"${file_path}/${file_base_name}\""
}
]
}
Thanks, i have the same trouble. You help me solve the problem.