make/gcc.mk

Sat, 12 Apr 2025 21:32:31 +0200

author
Mike Becker <universe@uap-core.de>
date
Sat, 12 Apr 2025 21:32:31 +0200
changeset 1286
5492e8ef05f4
parent 1065
6eb7b54975ee
permissions
-rw-r--r--

fixes that cx_tree_search() did not investigate subtrees with equally good distance

fixes #632

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