make/gcc.mk

Sun, 29 Dec 2024 18:03:21 +0100

author
Mike Becker <universe@uap-core.de>
date
Sun, 29 Dec 2024 18:03:21 +0100
changeset 1067
7799addf475f
parent 1065
6eb7b54975ee
permissions
-rw-r--r--

optimize cxJsonObjGet() part 1 - binary search

part 2 will be the index buffer to preserve the order

relates to #462

#
# gcc toolchain config
#

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

SHLIB_CFLAGS = -fPIC
SHLIB_LDFLAGS = -shared

COVERAGE_CFLAGS = --coverage -DNDEBUG
COVERAGE_LDFLAGS =  --coverage

mercurial