Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Use a makefile? :) – dbw Feb 1 at 20:43

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.