make/gcc.mk

Sun, 18 Feb 2024 13:38:42 +0100

author
Mike Becker <universe@uap-core.de>
date
Sun, 18 Feb 2024 13:38:42 +0100
changeset 833
5c926801f052
parent 788
b34ff44e6433
permissions
-rw-r--r--

vastly simplify tree iterators and add test for creating them

relates to #371

     1 #
     2 # gcc toolchain config
     3 #
     5 CFLAGS =
     6 DEBUG_CC_FLAGS = -g -Wall -Wextra -pedantic
     7 RELEASE_CC_FLAGS = -O3 -DNDEBUG
     8 LDFLAGS =
    10 SHLIB_CFLAGS = -fPIC
    11 SHLIB_LDFLAGS = -shared
    13 COVERAGE_CFLAGS = --coverage
    14 COVERAGE_LDFLAGS =  --coverage

mercurial