make/gcc.mk

Thu, 06 Feb 2025 20:09:55 +0100

author
Mike Becker <universe@uap-core.de>
date
Thu, 06 Feb 2025 20:09:55 +0100
branch
docs/3.1
changeset 1166
03bbdf402675
parent 1065
6eb7b54975ee
permissions
-rw-r--r--

write introduction for the Utilities Section

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