src/main/resources/make/suncc.mk

Thu, 08 Jan 2026 18:31:54 +0100

author
Mike Becker <universe@uap-core.de>
date
Thu, 08 Jan 2026 18:31:54 +0100
changeset 181
7122ebb40557
parent 180
93b2368451f6
permissions
-rw-r--r--

make .mk file instruction texts more comprehensive

#
# suncc toolchain
#

# How to use:
#  - remove lines that you do not modify or remove this file entirely
#    (except for SHLIB_*, the flags below are applied by default)
#  - change the lines where you want to add / remove flags
#  - optionally: add more toolchain specific variables
#  - remove this comment
CFLAGS =
CXXFLAGS =
DEBUG_CFLAGS = -g
DEBUG_CXXFLAGS = -g
RELEASE_CFLAGS = -O3 -DNDEBUG
RELEASE_CXXFLAGS = -O3 -DNDEBUG
LDFLAGS =

SHLIB_CFLAGS = -Kpic
SHLIB_LDFLAGS = -G

mercurial