Switch C compiler to the generic 'cc' (to use the default compiler, not necessarily GCC -- this is for systems that offer both GCC and Clang, and use Clang as default).

This commit is contained in:
Thomas Pornin 2017-08-28 16:26:33 +02:00
parent 9dc6211237
commit 5b980fb625

View File

@ -37,7 +37,7 @@ RM = rm -f
MKDIR = mkdir -p MKDIR = mkdir -p
# C compiler and flags. # C compiler and flags.
CC = gcc CC = cc
CFLAGS = -W -Wall -Os -fPIC CFLAGS = -W -Wall -Os -fPIC
CCOUT = -c -o CCOUT = -c -o
@ -47,12 +47,12 @@ ARFLAGS = -rcs
AROUT = AROUT =
# DLL building tool. # DLL building tool.
LDDLL = gcc LDDLL = cc
LDDLLFLAGS = -shared LDDLLFLAGS = -shared
LDDLLOUT = -o LDDLLOUT = -o
# Static linker. # Static linker.
LD = gcc LD = cc
LDFLAGS = LDFLAGS =
LDOUT = -o LDOUT = -o