summaryrefslogtreecommitdiff
path: root/doc/faq.html
diff options
context:
space:
mode:
authorMike Pall <mike>2010-10-05 01:36:54 +0200
committerMike Pall <mike>2010-10-05 01:36:54 +0200
commitddae8878786a310f2e6cbe2a1d602a17ea28bb11 (patch)
tree3ffe5c7790acbacdcdae748984960418b358fcc1 /doc/faq.html
parente396bef7d8a346c6ea54191d658209ee90047276 (diff)
downloadluajit2-ddae8878786a310f2e6cbe2a1d602a17ea28bb11.tar.gz
Update docs for PPC port. Clarify and extend install instructions.
Diffstat (limited to 'doc/faq.html')
-rw-r--r--doc/faq.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/faq.html b/doc/faq.html
index 90f37cef..9404f788 100644
--- a/doc/faq.html
+++ b/doc/faq.html
@@ -126,7 +126,7 @@ running inside a C function under the Lua interpreter.</dd>
<dt>Q: Why doesn't my favorite power-patch for Lua apply against LuaJIT?</dt>
<dd>Because it's a completely redesigned VM and has very little code
in common with Lua anymore. Also, if the patch introduces changes to
-the Lua semantics, this would need to be reflected everywhere in the
+the Lua semantics, these would need to be reflected everywhere in the
VM, from the interpreter up to all stages of the compiler.<br> Please
use only standard Lua language constructs. For many common needs you
can use source transformations or use wrapper or proxy functions.
@@ -139,8 +139,8 @@ The compiler will happily optimize away such indirections.</dd>
machine code. This means the code generator must be ported to each
architecture. And the fast interpreter is written in assembler and
must be ported, too. This is quite an undertaking.<br> Currently only
-x86 and x64 CPUs are supported. Other architectures will follow based
-on sufficient user demand and/or sponsoring.</dd>
+x86, x64 and PPC/e500v2 CPUs are supported. Other architectures will follow
+based on sufficient user demand and/or sponsoring.</dd>
</dl>
<dl>