]> git.mdlowis.com Git - proto/sclpl.git/commitdiff
use unix standard 'cc' for c compiler
authorMichael D. Lowis <mike@mdlowis.com>
Mon, 3 Nov 2014 02:17:36 +0000 (21:17 -0500)
committerMichael D. Lowis <mike@mdlowis.com>
Mon, 3 Nov 2014 02:17:36 +0000 (21:17 -0500)
source/sclpl/main.c

index 1149fe3ba51f8aceda9390f64e331f1c7a36eb27..aa03f962469ac53ba5c32c52d20192a01dda0354 100644 (file)
@@ -113,10 +113,10 @@ list_t* input_files(void) {
 
 /* Command Building
  *****************************************************************************/
-char Object_Cmd[]    = "clang -c -I. -o %s %s";
-char Program_Cmd[]   = "clang -o %s %s";
+char Object_Cmd[]    = "cc -c -o %s %s";
+char Program_Cmd[]   = "cc -o %s %s";
 char StaticLib_Cmd[] = "ar rcs %s %s";
-char SharedLib_Cmd[] = "clang -shared %s";
+char SharedLib_Cmd[] = "cc -shared %s";
 
 str_t* str_join(char* joinstr, vec_t* strs) {
     str_t* ret = str_new("");