make/gcc.mk

Mon, 10 Feb 2025 21:59:39 +0100

author
Mike Becker <universe@uap-core.de>
date
Mon, 10 Feb 2025 21:59:39 +0100
branch
docs/3.1
changeset 1182
3ce4a58a3eea
parent 1065
6eb7b54975ee
permissions
-rw-r--r--

update install instructions with instructions for windows DLL

relates to #451
relates to #582

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