mirror of
https://github.com/status-im/BearSSL.git
synced 2025-02-23 07:58:08 +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
|
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
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user