make/gcc.mk

Fri, 03 Oct 2025 18:58:44 +0200

author
Mike Becker <universe@uap-core.de>
date
Fri, 03 Oct 2025 18:58:44 +0200
changeset 1415
40074e643663
parent 1311
7072b20aa51f
permissions
-rw-r--r--

go back to ctype.h, but this time try to avoid crashes in Microsoft's implementation

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