47 lines
1.7 KiB
Plaintext
47 lines
1.7 KiB
Plaintext
# CONFIG.Common.linuxCommon
|
|
#
|
|
# Definitions for linux target builds
|
|
# Sites may override these definitions in CONFIG_SITE.Common.linuxCommon
|
|
#-------------------------------------------------------
|
|
|
|
# Include definitions common to all Unix targets
|
|
include $(CONFIG)/os/CONFIG.Common.UnixCommon
|
|
|
|
OS_CLASS = Linux
|
|
|
|
# Define _GNU_SOURCE and _DEFAULT_SOURCE for maximum portability
|
|
POSIX_CPPFLAGS = -D_GNU_SOURCE -D_DEFAULT_SOURCE
|
|
POSIX_LDLIBS = -lpthread
|
|
|
|
OP_SYS_CPPFLAGS += -Dlinux
|
|
OP_SYS_LDLIBS += -lrt -ldl
|
|
# Use -rdynamic to maximize symbols available for stacktrace
|
|
OP_SYS_LDFLAGS += -rdynamic
|
|
|
|
# Linker flags for static & shared-library builds
|
|
STATIC_LDFLAGS_YES= -Wl,-Bstatic
|
|
STATIC_LDFLAGS_NO=
|
|
STATIC_LDLIBS_YES= -Wl,-Bdynamic
|
|
|
|
# Set runtime path for shared libraries if USE_RPATH=YES and STATIC_BUILD=NO
|
|
SHRLIBDIR_RPATH_LDFLAGS_YES_NO = $(SHRLIB_DEPLIB_DIRS:%=-Wl,-rpath,%)
|
|
SHRLIBDIR_LDFLAGS += \
|
|
$(SHRLIBDIR_RPATH_LDFLAGS_$(LINKER_USE_RPATH)_$(STATIC_BUILD))
|
|
|
|
# Set runtime path for products if USE_RPATH=YES and STATIC_BUILD=NO
|
|
PRODDIR_RPATH_LDFLAGS_YES_NO = $(PROD_DEPLIB_DIRS:%=-Wl,-rpath,%)
|
|
PRODDIR_LDFLAGS += \
|
|
$(PRODDIR_RPATH_LDFLAGS_$(LINKER_USE_RPATH)_$(STATIC_BUILD))
|
|
|
|
# Link libraries controlled by COMMANDLINE_LIBRARY
|
|
# The newest Linux versions only need readline, older ones need both
|
|
# readline and ncurses, and the oldest need readline and curses
|
|
LDLIBS_READLINE = -lreadline
|
|
LDLIBS_READLINE_NCURSES = -lreadline -lncurses
|
|
LDLIBS_READLINE_CURSES = -lreadline -lcurses
|
|
|
|
#--------------------------------------------------
|
|
# Allow site overrides
|
|
-include $(CONFIG)/os/CONFIG_SITE.Common.linuxCommon
|
|
-include $(CONFIG)/os/CONFIG_SITE.$(EPICS_HOST_ARCH).linuxCommon
|