From: Michael D. Lowis Date: Mon, 3 Nov 2014 02:17:36 +0000 (-0500) Subject: use unix standard 'cc' for c compiler X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=d203456749d5e8a7dc95f960330123296c5d8c79;p=proto%2Fsclpl.git use unix standard 'cc' for c compiler --- diff --git a/source/sclpl/main.c b/source/sclpl/main.c index 1149fe3..aa03f96 100644 --- a/source/sclpl/main.c +++ b/source/sclpl/main.c @@ -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("");