From: David Schleef Date: Thu, 14 Apr 2011 20:02:52 +0000 (-0700) Subject: Release 0.4.12 X-Git-Tag: orc-0.4.12~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e8ccabbd424f5329e324566e87d64ef3778c1a16;p=platform%2Fupstream%2Forc.git Release 0.4.12 --- diff --git a/RELEASE b/RELEASE index a2629c6..175bdbc 100644 --- a/RELEASE +++ b/RELEASE @@ -1,4 +1,24 @@ +0.4.12 +====== + +This is primarily a bug fixing release. + + - Fix gcc-4.6 warnings in generated code + - Codegen fixes for Altivec. Passes regression tests again. + - More error checking for code allocation. + - NEON: floating point improvements + - Removed stdint.h from API. This could theoretically cause + breakage if you depended on orc to include stdint.h. + +One new feature is the OrcCode structure, which keeps track of +compiled code. This now allows applications to free unused code. + +Internally, x86 code generation was completely refactored to add +an intermediate stage, which will later be used for instruction +reordering. None of this is useful yet. + + 0.4.11 ====== diff --git a/configure.ac b/configure.ac index 876f329..2ee9581 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.58]) -AC_INIT(orc,0.4.11.1) +AC_INIT(orc,0.4.12) dnl don't forget to update libversion AS_NANO(ORC_CVS=no,ORC_CVS=yes) @@ -17,7 +17,7 @@ dnl - library source changed -> increment REVISION dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0 dnl - interfaces added -> increment AGE dnl - interfaces removed -> AGE = 0 -ORC_LIBVERSION="11:0:11" +ORC_LIBVERSION="12:0:12" AC_SUBST(ORC_LIBVERSION) AC_LIBTOOL_WIN32_DLL AC_LIBTOOL_TAGS([])