Fixed spurious warning about old-style prototype.
[BearSSL] / conf / Unix.mk
index a9b6450..02f2b2b 100644 (file)
@@ -37,7 +37,7 @@ RM = rm -f
 MKDIR = mkdir -p
 
 # C compiler and flags.
-CC = gcc
+CC = cc
 CFLAGS = -W -Wall -Os -fPIC
 CCOUT = -c -o 
 
@@ -47,13 +47,13 @@ ARFLAGS = -rcs
 AROUT =
 
 # DLL building tool.
-LDDLL = gcc
+LDDLL = cc
 LDDLLFLAGS = -shared
 LDDLLOUT = -o 
 
 # Static linker.
-LD = gcc
-LDFLAGS =
+LD = cc
+LDFLAGS = 
 LDOUT = -o 
 
 # C# compiler; we assume usage of Mono.