make/gcc.mk

Sat, 18 Jan 2025 13:30:51 +0100

author
Mike Becker <universe@uap-core.de>
date
Sat, 18 Jan 2025 13:30:51 +0100
changeset 1132
b7fea9b2874c
parent 1065
6eb7b54975ee
permissions
-rw-r--r--

remove uses of ctype.h - temporarily fixes #577

we are in desperate need of a good solution that also supports Unicode, though

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