make/gcc.mk@40aad3f0bc9e
make/gcc.mk
Sun, 22 Dec 2024 22:10:04 +0100
- author
- Mike Becker <universe@uap-core.de>
- date
- Sun, 22 Dec 2024 22:10:04 +0100
- changeset 1047
- 40aad3f0bc9e
- parent 988
-
15b3ca7ee33f
- permissions
- -rw-r--r--
don't trust that size_t always has word width
it should be the case on all platforms supported by UCX, but it's not strictly defined in POSIX that it must be the case
#
# 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
COVERAGE_LDFLAGS = --coverage