make/gcc.mk

Sun, 13 Apr 2025 11:54:10 +0200

author
Mike Becker <universe@uap-core.de>
date
Sun, 13 Apr 2025 11:54:10 +0200
changeset 1288
b41ad5d9bcbf
parent 1065
6eb7b54975ee
permissions
-rw-r--r--

fixes errno value after failing cxBufferSeek() to be consistently EINVAL

fixes #628

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