make/gcc.mk

Tue, 17 Sep 2024 23:19:03 +0200

author
Mike Becker <universe@uap-core.de>
date
Tue, 17 Sep 2024 23:19:03 +0200
changeset 885
878a450e79bd
parent 788
b34ff44e6433
permissions
-rw-r--r--

fixes incorrect result from cx_array_binary_search() when searched element is smaller than the entire array

relates to #424

#
# gcc toolchain config
#

CFLAGS =
DEBUG_CC_FLAGS = -g -Wall -Wextra -pedantic
RELEASE_CC_FLAGS = -O3 -DNDEBUG
LDFLAGS =

SHLIB_CFLAGS = -fPIC
SHLIB_LDFLAGS = -shared

COVERAGE_CFLAGS = --coverage
COVERAGE_LDFLAGS =  --coverage

mercurial