make/gcc.mk

Thu, 12 Oct 2023 00:00:35 +0200

author
Mike Becker <universe@uap-core.de>
date
Thu, 12 Oct 2023 00:00:35 +0200
changeset 753
24dc84788dee
child 754
4bc7d966c9db
permissions
-rw-r--r--

replace most of the build system with uwproj

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

mercurial