make/gcc.mk

Sat, 22 Feb 2025 18:55:25 +0100

author
Mike Becker <universe@uap-core.de>
date
Sat, 22 Feb 2025 18:55:25 +0100
changeset 1221
304f4f7b37d1
parent 1065
6eb7b54975ee
permissions
-rw-r--r--

document cx_strreplace() family of functions and improve docstrings

relates to #451

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