diff --git a/configure/os/CONFIG_SITE.Common.ios-arm b/configure/os/CONFIG_SITE.Common.ios-arm new file mode 100644 index 000000000..89daf1cf9 --- /dev/null +++ b/configure/os/CONFIG_SITE.Common.ios-arm @@ -0,0 +1,28 @@ +# CONFIG_SITE.Common.ios-arm +# +# Revision-Id: anj@aps.anl.gov-20111202164243-clxybuefflizbyvr +# This file is maintained by the build community. +# +# Site-specific settings for ios-arm target builds +#------------------------------------------------------- + +# Which ARM instruction set(s) to generate code for: +# Most iOS devices can run programs compiled for both the +# ARMv6 and ARMv7 instruction sets. ARMv7 code is usually +# more efficient, but the older devices listed below can only +# use the ARMv6 instruction set. Including both architectures +# generates a Universal binary, which is larger and takes +# longer to compile but runs efficiently on all devices. +# +# ARMv6-only devices: iPhone 1 or 3G, iPod Touch Gen 1 or 2 +# +ARCH_CLASS = armv7 +#ARCH_CLASS = armv6 armv7 +#ARCH_CLASS = armv6 + + +# Uncomment these two definitions to use g++ instead of clang++ +# which may be needed in some circumstances: +# +#CCC = $(GNU_BIN)/c++ +#GNU_LDLIBS_YES = -lgcc diff --git a/configure/os/CONFIG_SITE.Common.linux-x86 b/configure/os/CONFIG_SITE.Common.linux-x86 index b404b368c..cb57b0d4a 100644 --- a/configure/os/CONFIG_SITE.Common.linux-x86 +++ b/configure/os/CONFIG_SITE.Common.linux-x86 @@ -1,6 +1,6 @@ # CONFIG_SITE.Common.linux-x86 # -# Revision-Id: anj@aps.anl.gov-20101122164049-brpnm0uwvpptmw80 +# Revision-Id: anj@aps.anl.gov-20111207195604-heciohzgvyhhpgrb # # Site Specific definitions for linux-x86 target # Only the local epics system manager should modify this file @@ -33,4 +33,8 @@ COMMANDLINE_LIBRARY = READLINE #COMMANDLINE_LIBRARY = READLINE_CURSES -OP_SYS_CFLAGS += -g +# It makes sense to include debugging symbols even in optimized builds +# in case you want to attach gdb to the process or examine a core-dump. +# This does cost disk space, but not memory as debug symbols are not +# loaded into RAM when the binary is loaded. +OPT_CFLAGS_YES += -g diff --git a/configure/os/CONFIG_SITE.Common.linux-x86_64 b/configure/os/CONFIG_SITE.Common.linux-x86_64 index 00dcd1bd2..a69b4a7a2 100644 --- a/configure/os/CONFIG_SITE.Common.linux-x86_64 +++ b/configure/os/CONFIG_SITE.Common.linux-x86_64 @@ -1,6 +1,6 @@ # CONFIG_SITE.Common.linux-x86_64 # -# Revision-Id: anj@aps.anl.gov-20101122164049-brpnm0uwvpptmw80 +# Revision-Id: anj@aps.anl.gov-20111207195604-heciohzgvyhhpgrb # # Site Specific definitions for linux-x86_64 target # Only the local epics system manager should modify this file @@ -33,4 +33,8 @@ COMMANDLINE_LIBRARY = READLINE #COMMANDLINE_LIBRARY = READLINE_CURSES -OP_SYS_CFLAGS += -g +# It makes sense to include debugging symbols even in optimized builds +# in case you want to attach gdb to the process or examine a core-dump. +# This does cost disk space, but not memory as debug symbols are not +# loaded into RAM when the binary is loaded. +OPT_CFLAGS_YES += -g diff --git a/src/RTEMS/base/Makefile b/src/RTEMS/base/Makefile index 98d24509f..e77beeeb7 100644 --- a/src/RTEMS/base/Makefile +++ b/src/RTEMS/base/Makefile @@ -12,15 +12,14 @@ include $(TOP)/configure/CONFIG INC += epicsRtemsInitHooks.h -SRCS += rtems_init.c -SRCS += rtems_config.c -SRCS += rtems_netconfig.c -SRCS += rtems_util.c -SRCS += setBootConfigFromNVRAM.c -SRCS += epicsRtemsInitHookPre.c -SRCS += epicsRtemsInitHookPost.c +rtemsCom_SRCS += rtems_init.c +rtemsCom_SRCS += rtems_config.c +rtemsCom_SRCS += rtems_netconfig.c +rtemsCom_SRCS += rtems_util.c +rtemsCom_SRCS += setBootConfigFromNVRAM.c +rtemsCom_SRCS += epicsRtemsInitHookPre.c +rtemsCom_SRCS += epicsRtemsInitHookPost.c LIBRARY_RTEMS = rtemsCom -LIBRARY_SRCS = $(SRCS) $(BUILD_ARCHS) include $(TOP)/configure/RULES diff --git a/src/bpt/Makefile b/src/bpt/Makefile index f78b13d98..231c1b105 100644 --- a/src/bpt/Makefile +++ b/src/bpt/Makefile @@ -22,7 +22,8 @@ DBD += bptTypeKdegF.dbd PROD_LIBS = Com PROD_HOST += makeBpt -makeBpt_SRCS=makeBpt + +makeBpt_SRCS = makeBpt include $(TOP)/configure/RULES diff --git a/src/ca/CAref.html b/src/ca/CAref.html index 17855839e..185eedd3b 100644 --- a/src/ca/CAref.html +++ b/src/ca/CAref.html @@ -52,7 +52,7 @@ src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!" height="31" width="88">

Modified on -Date: Wed 2010-11-24 13:31:47 -0500

+Date: Tue 2011-07-26 10:40:37 -0600


Table of Contents

@@ -246,7 +246,7 @@ Date: Wed 2010-11-24 13:31:47 -0500

Why Reconfigure Channel Access

-

Typically reasons to reconfigure EPICS Channel Access:

+

Typical reasons to reconfigure EPICS Channel Access: