57 lines
1.2 KiB
Plaintext
57 lines
1.2 KiB
Plaintext
# CONFIG.Host.LynxOS
|
|
#
|
|
# This file is maintained by the EPICS community.
|
|
# Sites may override these definitions in CONFIG_SITE.Host.LynxOS
|
|
|
|
ARCH_CLASS = LynxOS
|
|
|
|
# Include definitions common to all Unix archs
|
|
include $(EPICS_BASE)/config/CONFIG.Host.UnixCommon
|
|
|
|
AR = ar -rc
|
|
ARCMD = $(AR) $@
|
|
RANLIB = ranlib -t
|
|
|
|
|
|
|
|
# Configure OS vendor C compiler
|
|
ACC_ANSI = $(ACC) -ansi
|
|
ACC_STRICT = $(ACC) -ansi -pedantic
|
|
ACC_TRAD = $(ACC)
|
|
ACC_WARN_YES = -Wall
|
|
ACC_WARN_NO = -w
|
|
ACC_OPT_YES = -O
|
|
ACC_OPT_NO = -g
|
|
ACC_SFLAGS_YES = -Bstatic
|
|
ACC_SFLAGS_NO=
|
|
ACC_SLIBS_YES =
|
|
ACC_SLIBS_NO=
|
|
ACC_SHRLIB_CFLAGS_YES =
|
|
ACC_SHRLIB_LDFLAGS_YES =
|
|
|
|
|
|
|
|
# Configure OS vendor C++ compiler
|
|
CCC_NORMAL = $(CCC)
|
|
CCC_STRICT = $(CCC)
|
|
CCC_TEMPL_INST_FLAG = -pedantic -DEXPL_TEMP
|
|
CCC_WARN_YES = -Wall
|
|
CCC_WARN_NO = -w
|
|
CCC_OPT_YES = -O
|
|
CCC_OPT_NO = -g
|
|
CCC_SFLAGS_YES = -Bstatic
|
|
CCC_SFLAGS_NO=
|
|
CCC_SLIBS_YES =
|
|
CCC_SLIBS_NO=
|
|
CCC_DEPENDS_FLAG = -pedantic
|
|
|
|
|
|
# added smh 6/5/98 : when building fdmgr - seems to use this not ACC
|
|
# in effect this overides orig def in CONFIG_COMMON :
|
|
# which is GCC_STRICT = $(GCC) -ansi -pedantic
|
|
GCC_STRICT = $(GCC)
|
|
G++_STRICT = $(G++) -Wtraditional -DEXPL_TEMP
|
|
|
|
ARCH_DEP_CFLAGS = -DLynxOS -mposix -D_X86_ -DLYNXOS_RELEASE_2_4_0
|
|
ARCH_DEP_LDLIBS = -lc -lbsd -lnsl -lm -lposix4d9 -llynx
|