make/gcc.mk

Fri, 23 May 2025 14:00:24 +0200

author
Mike Becker <universe@uap-core.de>
date
Fri, 23 May 2025 14:00:24 +0200
changeset 1329
343eac5ac824
parent 1311
7072b20aa51f
permissions
-rw-r--r--

add base allocator to mempool

otherwise, mempools could not be used as
new default allocators

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