mirror of
https://github.com/status-im/BearSSL.git
synced 2025-02-22 23:48:14 +00:00
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:
parent
9dc6211237
commit
5b980fb625
@ -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,12 +47,12 @@ ARFLAGS = -rcs
|
||||
AROUT =
|
||||
|
||||
# DLL building tool.
|
||||
LDDLL = gcc
|
||||
LDDLL = cc
|
||||
LDDLLFLAGS = -shared
|
||||
LDDLLOUT = -o
|
||||
|
||||
# Static linker.
|
||||
LD = gcc
|
||||
LD = cc
|
||||
LDFLAGS =
|
||||
LDOUT = -o
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user