I want to create programs in the built-in sublime text build command 2
I created the gcc.sublime-build file with
{
"cmd" : ["gcc", "$file_name", "-o", "${file_base_name}"],
"selector" : "source.c",
"shell":true,
"working_dir" : "$file_path"
}
but all i get is a mistake saying
gcc: fatal error: no input files compilation completed. [Finished at 0.0 with exit code 4]
any ideas
source
share