diff options
author | Mike Pall <mike> | 2010-10-05 01:36:54 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2010-10-05 01:36:54 +0200 |
commit | ddae8878786a310f2e6cbe2a1d602a17ea28bb11 (patch) | |
tree | 3ffe5c7790acbacdcdae748984960418b358fcc1 /doc/faq.html | |
parent | e396bef7d8a346c6ea54191d658209ee90047276 (diff) | |
download | luajit-ddae8878786a310f2e6cbe2a1d602a17ea28bb11.tar.gz luajit-ddae8878786a310f2e6cbe2a1d602a17ea28bb11.tar.bz2 luajit-ddae8878786a310f2e6cbe2a1d602a17ea28bb11.zip |
Update docs for PPC port. Clarify and extend install instructions.
Diffstat (limited to 'doc/faq.html')
-rw-r--r-- | doc/faq.html | 6 |
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> | |||
126 | <dt>Q: Why doesn't my favorite power-patch for Lua apply against LuaJIT?</dt> | 126 | <dt>Q: Why doesn't my favorite power-patch for Lua apply against LuaJIT?</dt> |
127 | <dd>Because it's a completely redesigned VM and has very little code | 127 | <dd>Because it's a completely redesigned VM and has very little code |
128 | in common with Lua anymore. Also, if the patch introduces changes to | 128 | in common with Lua anymore. Also, if the patch introduces changes to |
129 | the Lua semantics, this would need to be reflected everywhere in the | 129 | the Lua semantics, these would need to be reflected everywhere in the |
130 | VM, from the interpreter up to all stages of the compiler.<br> Please | 130 | VM, from the interpreter up to all stages of the compiler.<br> Please |
131 | use only standard Lua language constructs. For many common needs you | 131 | use only standard Lua language constructs. For many common needs you |
132 | can use source transformations or use wrapper or proxy functions. | 132 | can use source transformations or use wrapper or proxy functions. |
@@ -139,8 +139,8 @@ The compiler will happily optimize away such indirections.</dd> | |||
139 | machine code. This means the code generator must be ported to each | 139 | machine code. This means the code generator must be ported to each |
140 | architecture. And the fast interpreter is written in assembler and | 140 | architecture. And the fast interpreter is written in assembler and |
141 | must be ported, too. This is quite an undertaking.<br> Currently only | 141 | must be ported, too. This is quite an undertaking.<br> Currently only |
142 | x86 and x64 CPUs are supported. Other architectures will follow based | 142 | x86, x64 and PPC/e500v2 CPUs are supported. Other architectures will follow |
143 | on sufficient user demand and/or sponsoring.</dd> | 143 | based on sufficient user demand and/or sponsoring.</dd> |
144 | </dl> | 144 | </dl> |
145 | 145 | ||
146 | <dl> | 146 | <dl> |