o added CMPLR_SRC_DIRS to ALL_SRC_DIRS, and added compiler/$CMPLR_CLASS) to INSTALL_INCLUDES in CONFIG_COMMON o added additional compiler specific rule deciding where things are installed to in CONFIG_COMMON o added compiler specific include install to RULES_BUILD o changed configure/os/CONFIG.linux-x86.linux-x86 to specify minimum arch is 586 (pentium circa 1995) o changed configure/os/CONFIG.win32-x86-cygwin.win32-x86-cygwin to specify minimum arch is 586 (pentium circa 1995) o added epicsAtoimic facility to libCom/Makefile o added testing and performance measurement to libCom/test/Makefile
23 lines
657 B
Plaintext
23 lines
657 B
Plaintext
# CONFIG.linux-x86.linux-x86
|
|
#
|
|
# $Revision-Id$
|
|
#
|
|
# Definitions for linux-x86 host - linux-x86 target builds
|
|
# Sites may override these definitions in CONFIG_SITE.linux-x86.linux-x86
|
|
#-------------------------------------------------------
|
|
|
|
# Include common gnu compiler definitions
|
|
include $(CONFIG)/CONFIG.gnuCommon
|
|
|
|
STATIC_LDFLAGS_YES= -Wl,-Bstatic
|
|
STATIC_LDFLAGS_NO=
|
|
STATIC_LDLIBS_YES= -Wl,-Bdynamic
|
|
STATIC_LDLIBS_NO=
|
|
|
|
SHRLIB_LDFLAGS += -Wl,-h$@
|
|
LOADABLE_SHRLIB_LDFLAGS += -Wl,-h$@
|
|
|
|
# this means that atomic instrnsics are available, but that
|
|
# users with 486 processors and earlier will need specialized
|
|
# configure files
|
|
ARCH_DEP_CFLAGS += -march=i586 |