make/gcc.mk

Sun, 12 Oct 2025 20:21:56 +0200

author
Mike Becker <universe@uap-core.de>
date
Sun, 12 Oct 2025 20:21:56 +0200
changeset 1424
563033aa998c
parent 1311
7072b20aa51f
permissions
-rw-r--r--

fixes tons of typos and grammar issues across the documentation - fixes #667

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