make/cc.mk

Wed, 17 Jan 2024 21:01:50 +0100

author
Mike Becker <universe@uap-core.de>
date
Wed, 17 Jan 2024 21:01:50 +0100
changeset 814
5f9e07d3dd6c
parent 788
b34ff44e6433
child 815
b0c4750cecd8
permissions
-rw-r--r--

fix using warning options with compilers which do not support them - fixes #363

universe@753 1 #
universe@753 2 # cc toolchain config
universe@753 3 #
universe@753 4
universe@753 5 CFLAGS =
universe@753 6 DEBUG_CC_FLAGS = -g
universe@753 7 RELEASE_CC_FLAGS = -O3 -DNDEBUG
universe@753 8 LDFLAGS =
universe@753 9
universe@753 10 SHLIB_CFLAGS = -fPIC
universe@788 11 SHLIB_LDFLAGS = -shared
universe@788 12
universe@788 13 COVERAGE_CFLAGS =
universe@788 14 COVERAGE_LDFLAGS =

mercurial