Skip to content

Instantly share code, notes, and snippets.

@franciscbalint
Created April 27, 2015 21:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save franciscbalint/0ff1d247b1d6dcc350b2 to your computer and use it in GitHub Desktop.
Save franciscbalint/0ff1d247b1d6dcc350b2 to your computer and use it in GitHub Desktop.
Sublime Text 3 C build system for CS50
{
"cmd": [
"clang",
"-ggdb3",
"-O0",
"-std=c99",
"-Wall",
"-Werror",
"$file",
"-lcs50",
"-lm",
"-o",
"$file_base_name"
],
"selector" : "source.c",
"working_dir" : "$file_path"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment