diff options
author | David Schleef <ds@schleef.org> | 2013-02-19 22:21:00 -0800 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2013-02-19 22:21:24 -0800 |
commit | 091ea9454c312f6fc883a27a882347a5ab086771 (patch) | |
tree | a6e5db6d3cc7afc7136ed2c1ddd482d62db7b2bb | |
parent | e9430261015d8f059ff1359f89c137895e50c81e (diff) |
Release 0.4.17orc-0.4.17
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | RELEASE | 12 | ||||
-rw-r--r-- | configure.ac | 4 |
3 files changed, 15 insertions, 3 deletions
@@ -39,7 +39,7 @@ Features: - An application can add rules for converting existing or new opcodes to binary code for a specific target. - - Current targets: SSE, MMX, ARM, Altivec, NEON, and TI C64x+. + - Current targets: SSE, MMX, MIPS, Altivec, NEON, and TI C64x+. (The c64x target only produces source code.) - Programs can optionally be emulated, which is useful for testing, or @@ -1,4 +1,16 @@ +0.4.17 +====== + +Maintenance release: + + - Merged known distro patches. + - Added MIPS backend (Guillaume Emont). + - Disabled ARM backend because of poor coverage. + - Added bytecode parsing and writing. This can be used instead of + manual creation of OrcPrograms. + + 0.4.16 ====== diff --git a/configure.ac b/configure.ac index 00e1916..5d694ea 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.58]) -AC_INIT(orc,0.4.16.1) +AC_INIT(orc,0.4.17) dnl don't forget to update libversion AS_NANO(ORC_GIT=no,ORC_GIT=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="16:0:16" +ORC_LIBVERSION="17:0:17" AC_SUBST(ORC_LIBVERSION) AC_LIBTOOL_WIN32_DLL AC_LIBTOOL_TAGS([]) |