I am trying to build a Build System for C that both builds and runs the current program. When I use this build:
"cmd" : ["gcc", "$file_name", "-o", "$file_base_name.out"],
"selector" : "source.c",
"shell" : false,
"working_dir" : "$file_path"
it all works fine, but I doesn't run the compiled program. To do that I changed it to:
"cmd" : ["gcc", "$file_name", "-o", "$file_base_name.out", "&&", "./$file_base_name.out"],
"selector" : "source.c",
"shell" : true,
"working_dir" : "$file_path"
Building with this build system results in a "no input files" error. Leaving "shell" false doesn't work either as the "&&" and following commands are then seen as part of the gcc command. I have also tried to use a semicolon as a separator but that gives the same errors.
Does anyone know how to make ST2 build and run C-programs?