make/gcc.mk

Sun, 27 Apr 2025 12:37:29 +0200

author
Mike Becker <universe@uap-core.de>
date
Sun, 27 Apr 2025 12:37:29 +0200
changeset 1307
b2547ff3d1ce
parent 1065
6eb7b54975ee
permissions
-rw-r--r--

add a test case that proves that visitors are not affected by issue #656

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