make/gcc.mk

Wed, 10 Dec 2025 14:05:20 +0100

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Wed, 10 Dec 2025 14:05:20 +0100
changeset 1563
6e2f83ef6f5a
parent 1311
7072b20aa51f
permissions
-rw-r--r--

fix memory leak in the json parser and add more tests for cxJsonFromString - relates to #777

#
# gcc toolchain config
#

CFLAGS =
CXXFLAGS = -fpermissive
DEBUG_CFLAGS = -g -Wall -Wextra -pedantic
RELEASE_CFLAGS = -O3 -DNDEBUG
LDFLAGS =

SHLIB_CFLAGS = -fPIC
SHLIB_LDFLAGS = -shared

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

mercurial