Advertisement
Guest User

C sublime text build system for CS50 appliance

a guest
Oct 22nd, 2014
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.     "cmd" : ["/usr/bin/clang", "-ggdb3", "-O0", "-std=c99","-Wall", "-Werror", "$file_name", "-lcs50", "-lm", "-o", "${file_base_name}"],
  3.     "selector" : "source.c",
  4.     "shell":false,
  5.     "working_dir" : "$file_path",
  6.  
  7.     "variants":
  8.     [
  9.     {
  10.       "name": "Run",
  11.       "cmd": ["bash", "-c", "${file_path}/${file_base_name}"]
  12.     }
  13.   ]
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement