make/gcc.mk

Mon, 24 Nov 2025 22:39:18 +0100

author
Mike Becker <universe@uap-core.de>
date
Mon, 24 Nov 2025 22:39:18 +0100
changeset 1512
0dc866c7863b
parent 1311
7072b20aa51f
permissions
-rw-r--r--

add the note to the docstrings that tree iterator/visitor counter include the currently visited node

#
# 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