diff options
author | Mike Pall <mike> | 2012-05-09 18:11:35 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2012-05-09 18:11:35 +0200 |
commit | 51f05d64c93b5c1e8ba152740012454f399b996d (patch) | |
tree | 37382a28a5aca6600bad290ab2081aed4fafc380 | |
parent | c8a1f274af31763d0b6366c35df4a6986ed396d0 (diff) | |
download | luajit-51f05d64c93b5c1e8ba152740012454f399b996d.tar.gz luajit-51f05d64c93b5c1e8ba152740012454f399b996d.tar.bz2 luajit-51f05d64c93b5c1e8ba152740012454f399b996d.zip |
RELEASE LuaJIT-2.0.0-beta10v2.0.0-beta10
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | README | 4 | ||||
-rw-r--r-- | doc/changes.html | 2 | ||||
-rw-r--r-- | doc/install.html | 8 | ||||
-rw-r--r-- | doc/running.html | 6 | ||||
-rw-r--r-- | doc/status.html | 8 | ||||
-rw-r--r-- | etc/luajit.pc | 2 | ||||
-rw-r--r-- | src/luaconf.h | 4 | ||||
-rw-r--r-- | src/luajit.h | 4 |
9 files changed, 20 insertions, 20 deletions
@@ -16,7 +16,7 @@ | |||
16 | MAJVER= 2 | 16 | MAJVER= 2 |
17 | MINVER= 0 | 17 | MINVER= 0 |
18 | RELVER= 0 | 18 | RELVER= 0 |
19 | PREREL= -beta9 | 19 | PREREL= -beta10 |
20 | VERSION= $(MAJVER).$(MINVER).$(RELVER)$(PREREL) | 20 | VERSION= $(MAJVER).$(MINVER).$(RELVER)$(PREREL) |
21 | ABIVER= 5.1 | 21 | ABIVER= 5.1 |
22 | NODOTABIVER= 51 | 22 | NODOTABIVER= 51 |
@@ -1,5 +1,5 @@ | |||
1 | README for LuaJIT 2.0.0-beta9 | 1 | README for LuaJIT 2.0.0-beta10 |
2 | ----------------------------- | 2 | ------------------------------ |
3 | 3 | ||
4 | LuaJIT is a Just-In-Time (JIT) compiler for the Lua programming language. | 4 | LuaJIT is a Just-In-Time (JIT) compiler for the Lua programming language. |
5 | 5 | ||
diff --git a/doc/changes.html b/doc/changes.html index 9b0ea773..1d570c4d 100644 --- a/doc/changes.html +++ b/doc/changes.html | |||
@@ -61,7 +61,7 @@ div.major { max-width: 600px; padding: 1em; margin: 1em 0 1em 0; } | |||
61 | <div id="main"> | 61 | <div id="main"> |
62 | <p> | 62 | <p> |
63 | This is a list of changes between the released versions of LuaJIT.<br> | 63 | This is a list of changes between the released versions of LuaJIT.<br> |
64 | The current <span style="color: #c00000;">development version</span> is <strong>LuaJIT 2.0.0-beta9</strong>.<br> | 64 | The current <span style="color: #c00000;">development version</span> is <strong>LuaJIT 2.0.0-beta10</strong>.<br> |
65 | The current <span style="color: #0000c0;">stable version</span> is <strong>LuaJIT 1.1.8</strong>. | 65 | The current <span style="color: #0000c0;">stable version</span> is <strong>LuaJIT 1.1.8</strong>. |
66 | </p> | 66 | </p> |
67 | <p> | 67 | <p> |
diff --git a/doc/install.html b/doc/install.html index 5f08ef86..b31f3ab9 100644 --- a/doc/install.html +++ b/doc/install.html | |||
@@ -187,8 +187,8 @@ open a terminal window and change to this directory. Now unpack the archive | |||
187 | and change to the newly created directory: | 187 | and change to the newly created directory: |
188 | </p> | 188 | </p> |
189 | <pre class="code"> | 189 | <pre class="code"> |
190 | tar zxf LuaJIT-2.0.0-beta9.tar.gz | 190 | tar zxf LuaJIT-2.0.0-beta10.tar.gz |
191 | cd LuaJIT-2.0.0-beta9</pre> | 191 | cd LuaJIT-2.0.0-beta10</pre> |
192 | <h3>Building LuaJIT</h3> | 192 | <h3>Building LuaJIT</h3> |
193 | <p> | 193 | <p> |
194 | The supplied Makefiles try to auto-detect the settings needed for your | 194 | The supplied Makefiles try to auto-detect the settings needed for your |
@@ -238,11 +238,11 @@ Obviously the prefixes given during build and installation need to be the same. | |||
238 | <p style="color: #c00000;"> | 238 | <p style="color: #c00000;"> |
239 | Note: to avoid overwriting a previous version, the beta test releases | 239 | Note: to avoid overwriting a previous version, the beta test releases |
240 | only install the LuaJIT executable under the versioned name (i.e. | 240 | only install the LuaJIT executable under the versioned name (i.e. |
241 | <tt>luajit-2.0.0-beta9</tt>). You probably want to create a symlink | 241 | <tt>luajit-2.0.0-beta10</tt>). You probably want to create a symlink |
242 | for convenience, with a command like this: | 242 | for convenience, with a command like this: |
243 | </p> | 243 | </p> |
244 | <pre class="code" style="color: #c00000;"> | 244 | <pre class="code" style="color: #c00000;"> |
245 | sudo ln -sf luajit-2.0.0-beta9 /usr/local/bin/luajit | 245 | sudo ln -sf luajit-2.0.0-beta10 /usr/local/bin/luajit |
246 | </pre> | 246 | </pre> |
247 | 247 | ||
248 | <h2 id="windows">Windows Systems</h2> | 248 | <h2 id="windows">Windows Systems</h2> |
diff --git a/doc/running.html b/doc/running.html index b1bd8d31..d9f9aec2 100644 --- a/doc/running.html +++ b/doc/running.html | |||
@@ -87,11 +87,11 @@ interactive mode, too. | |||
87 | <p class="indent" style="color: #c00000;"> | 87 | <p class="indent" style="color: #c00000;"> |
88 | Note: the beta test releases only install under the versioned name on | 88 | Note: the beta test releases only install under the versioned name on |
89 | POSIX systems (to avoid overwriting a previous version). You either need | 89 | POSIX systems (to avoid overwriting a previous version). You either need |
90 | to type <tt>luajit-2.0.0-beta9</tt> to start it or create a symlink | 90 | to type <tt>luajit-2.0.0-beta10</tt> to start it or create a symlink |
91 | with a command like this: | 91 | with a command like this: |
92 | </p> | 92 | </p> |
93 | <pre class="code" style="color: #c00000;"> | 93 | <pre class="code" style="color: #c00000;"> |
94 | sudo ln -sf luajit-2.0.0-beta9 /usr/local/bin/luajit | 94 | sudo ln -sf luajit-2.0.0-beta10 /usr/local/bin/luajit |
95 | </pre> | 95 | </pre> |
96 | <p> | 96 | <p> |
97 | Unlike previous versions <b>optimization is turned on by default</b> in | 97 | Unlike previous versions <b>optimization is turned on by default</b> in |
@@ -197,7 +197,7 @@ itself. For a description of their options and output format, please | |||
197 | read the comment block at the start of their source. | 197 | read the comment block at the start of their source. |
198 | They can be found in the <tt>lib</tt> directory of the source | 198 | They can be found in the <tt>lib</tt> directory of the source |
199 | distribution or installed under the <tt>jit</tt> directory. By default | 199 | distribution or installed under the <tt>jit</tt> directory. By default |
200 | this is <tt>/usr/local/share/luajit-2.0.0-beta9/jit</tt> on POSIX | 200 | this is <tt>/usr/local/share/luajit-2.0.0-beta10/jit</tt> on POSIX |
201 | systems. | 201 | systems. |
202 | </p> | 202 | </p> |
203 | 203 | ||
diff --git a/doc/status.html b/doc/status.html index dab72ebf..36a1799f 100644 --- a/doc/status.html +++ b/doc/status.html | |||
@@ -62,7 +62,7 @@ ul li { padding-bottom: 0.3em; } | |||
62 | <p> | 62 | <p> |
63 | The <span style="color: #0000c0;">LuaJIT 1.x</span> series represents | 63 | The <span style="color: #0000c0;">LuaJIT 1.x</span> series represents |
64 | the current <span style="color: #0000c0;">stable branch</span>. | 64 | the current <span style="color: #0000c0;">stable branch</span>. |
65 | Only a single bug has been discovered in the last two years. So, if | 65 | Only a single bug has been discovered in the last three years. So, if |
66 | you need a rock-solid VM, you are encouraged to fetch the latest | 66 | you need a rock-solid VM, you are encouraged to fetch the latest |
67 | release of LuaJIT 1.x from the <a href="http://luajit.org/download.html"><span class="ext">»</span> Download</a> | 67 | release of LuaJIT 1.x from the <a href="http://luajit.org/download.html"><span class="ext">»</span> Download</a> |
68 | page. | 68 | page. |
@@ -70,10 +70,10 @@ page. | |||
70 | <p> | 70 | <p> |
71 | <span style="color: #c00000;">LuaJIT 2.0</span> is the currently active | 71 | <span style="color: #c00000;">LuaJIT 2.0</span> is the currently active |
72 | <span style="color: #c00000;">development branch</span>. | 72 | <span style="color: #c00000;">development branch</span>. |
73 | It has <b>Beta Test</b> status and is still undergoing | 73 | It still has <b>Beta Test</b> status, but it's not undergoing substantial |
74 | substantial changes. | 74 | changes anymore. |
75 | It has <a href="http://luajit.org/performance.html"><span class="ext">»</span> much better performance</a> than LuaJIT 1.x. | 75 | It has <a href="http://luajit.org/performance.html"><span class="ext">»</span> much better performance</a> than LuaJIT 1.x. |
76 | It's maturing quickly, so you should definitely | 76 | It's nearly feature-complete, so you should definitely |
77 | start to evaluate it for new projects right now. | 77 | start to evaluate it for new projects right now. |
78 | </p> | 78 | </p> |
79 | 79 | ||
diff --git a/etc/luajit.pc b/etc/luajit.pc index 974abde4..9fc4754a 100644 --- a/etc/luajit.pc +++ b/etc/luajit.pc | |||
@@ -2,7 +2,7 @@ | |||
2 | majver=2 | 2 | majver=2 |
3 | minver=0 | 3 | minver=0 |
4 | relver=0 | 4 | relver=0 |
5 | version=${majver}.${minver}.${relver}-beta9 | 5 | version=${majver}.${minver}.${relver}-beta10 |
6 | abiver=5.1 | 6 | abiver=5.1 |
7 | 7 | ||
8 | prefix=/usr/local | 8 | prefix=/usr/local |
diff --git a/src/luaconf.h b/src/luaconf.h index a0602d5b..dfb79e19 100644 --- a/src/luaconf.h +++ b/src/luaconf.h | |||
@@ -26,12 +26,12 @@ | |||
26 | #define LUA_LDIR LUA_ROOT "share/lua/5.1/" | 26 | #define LUA_LDIR LUA_ROOT "share/lua/5.1/" |
27 | #define LUA_CDIR LUA_ROOT "lib/lua/5.1/" | 27 | #define LUA_CDIR LUA_ROOT "lib/lua/5.1/" |
28 | #ifdef LUA_XROOT | 28 | #ifdef LUA_XROOT |
29 | #define LUA_JDIR LUA_XROOT "share/luajit-2.0.0-beta9/" | 29 | #define LUA_JDIR LUA_XROOT "share/luajit-2.0.0-beta10/" |
30 | #define LUA_XPATH \ | 30 | #define LUA_XPATH \ |
31 | ";" LUA_XROOT "share/lua/5.1/?.lua;" LUA_XROOT "share/lua/5.1/?/init.lua" | 31 | ";" LUA_XROOT "share/lua/5.1/?.lua;" LUA_XROOT "share/lua/5.1/?/init.lua" |
32 | #define LUA_XCPATH LUA_XROOT "lib/lua/5.1/?.so;" | 32 | #define LUA_XCPATH LUA_XROOT "lib/lua/5.1/?.so;" |
33 | #else | 33 | #else |
34 | #define LUA_JDIR LUA_ROOT "share/luajit-2.0.0-beta9/" | 34 | #define LUA_JDIR LUA_ROOT "share/luajit-2.0.0-beta10/" |
35 | #define LUA_XPATH | 35 | #define LUA_XPATH |
36 | #define LUA_XCPATH | 36 | #define LUA_XCPATH |
37 | #endif | 37 | #endif |
diff --git a/src/luajit.h b/src/luajit.h index 03db4282..10e926e1 100644 --- a/src/luajit.h +++ b/src/luajit.h | |||
@@ -30,9 +30,9 @@ | |||
30 | 30 | ||
31 | #include "lua.h" | 31 | #include "lua.h" |
32 | 32 | ||
33 | #define LUAJIT_VERSION "LuaJIT 2.0.0-beta9" | 33 | #define LUAJIT_VERSION "LuaJIT 2.0.0-beta10" |
34 | #define LUAJIT_VERSION_NUM 20000 /* Version 2.0.0 = 02.00.00. */ | 34 | #define LUAJIT_VERSION_NUM 20000 /* Version 2.0.0 = 02.00.00. */ |
35 | #define LUAJIT_VERSION_SYM luaJIT_version_2_0_0_beta9 | 35 | #define LUAJIT_VERSION_SYM luaJIT_version_2_0_0_beta10 |
36 | #define LUAJIT_COPYRIGHT "Copyright (C) 2005-2012 Mike Pall" | 36 | #define LUAJIT_COPYRIGHT "Copyright (C) 2005-2012 Mike Pall" |
37 | #define LUAJIT_URL "http://luajit.org/" | 37 | #define LUAJIT_URL "http://luajit.org/" |
38 | 38 | ||