From 894771e7896581d1d537f703c69eabaa6614879f Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Tue, 11 Mar 2014 17:14:30 -0500 Subject: [PATCH] docs: Update Release Notes. --- documentation/RELEASE_NOTES.html | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/documentation/RELEASE_NOTES.html b/documentation/RELEASE_NOTES.html index f00cabdcf..c16a3fd91 100644 --- a/documentation/RELEASE_NOTES.html +++ b/documentation/RELEASE_NOTES.html @@ -13,6 +13,25 @@ +

epicsString.h comparison functions fixed

+ +

The case-independent string comparison functions epicsStrCaseCmp() and +epicsStrnCaseCmp() were returning incorrect results when the strings did not +match; if the left-hand string is a shorter sub-set of the right-hand one the +result should be -1. These functions now match their BSD equivalents.

+ +

Windows -static targets included

+ +

The win32-x86 and windows-x64 host target architectures can now cross-build +the associated -static target, i.e. win32-x86-static or windows-x64-static +(these targets can also be used as regular host architectures). Users could +always have added configuration files themselves to build these, but we needed +them for continuous integration testing of static builds.

+ +

iOS Build Rules fixed

+ +

The problem building for the ios-x86 simulator target architecture has been +resolved.

Changes between 3.14.12.3 and 3.14.12.4