diff options
| author | Mike Pall <mike> | 2011-05-05 01:15:22 +0200 |
|---|---|---|
| committer | Mike Pall <mike> | 2011-05-05 01:15:22 +0200 |
| commit | b760add618ea98f3b71290ce88d32718401aa67f (patch) | |
| tree | 68bde0eb1edda8659632fa1e0f7c4ce22be134b3 /doc | |
| parent | 6534152b446f5b25616490ec4f589f14c557fb27 (diff) | |
| download | luajit-b760add618ea98f3b71290ce88d32718401aa67f.tar.gz luajit-b760add618ea98f3b71290ce88d32718401aa67f.tar.bz2 luajit-b760add618ea98f3b71290ce88d32718401aa67f.zip | |
Misc. updates to docs.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/ext_ffi.html | 6 | ||||
| -rw-r--r-- | doc/ext_ffi_semantics.html | 2 | ||||
| -rw-r--r-- | doc/faq.html | 7 | ||||
| -rw-r--r-- | doc/install.html | 3 | ||||
| -rw-r--r-- | doc/luajit.html | 4 |
5 files changed, 12 insertions, 10 deletions
diff --git a/doc/ext_ffi.html b/doc/ext_ffi.html index 0bbf7606..6546678e 100644 --- a/doc/ext_ffi.html +++ b/doc/ext_ffi.html | |||
| @@ -84,10 +84,10 @@ code a C compiler would generate. Calls to C functions can | |||
| 84 | be inlined in JIT-compiled code, unlike calls to functions bound via | 84 | be inlined in JIT-compiled code, unlike calls to functions bound via |
| 85 | the classic Lua/C API. | 85 | the classic Lua/C API. |
| 86 | </p> | 86 | </p> |
| 87 | <p> | 87 | <p><em> |
| 88 | This page gives a short introduction to the usage of the FFI library. | 88 | This page gives a short introduction to the usage of the FFI library. |
| 89 | Please use the FFI sub-topics in the navigation bar to learn more. | 89 | <em>Please use the FFI sub-topics in the navigation bar to learn more.</em> |
| 90 | </p> | 90 | </em></p> |
| 91 | 91 | ||
| 92 | <h2 id="call">Motivating Example: Calling External C Functions</h2> | 92 | <h2 id="call">Motivating Example: Calling External C Functions</h2> |
| 93 | <p> | 93 | <p> |
diff --git a/doc/ext_ffi_semantics.html b/doc/ext_ffi_semantics.html index b612dbc5..624f9efe 100644 --- a/doc/ext_ffi_semantics.html +++ b/doc/ext_ffi_semantics.html | |||
| @@ -80,7 +80,7 @@ applications using the LuaJIT FFI for developers with a C or C++ | |||
| 80 | background. | 80 | background. |
| 81 | </p> | 81 | </p> |
| 82 | <p class="indent" style="color: #c00000;"> | 82 | <p class="indent" style="color: #c00000;"> |
| 83 | Please note: this is the first public release of the FFI library. This | 83 | Please note: this is an early public release of the FFI library. This |
| 84 | does not comprise the final specification for the FFI semantics, yet. | 84 | does not comprise the final specification for the FFI semantics, yet. |
| 85 | Some of the semantics may need to be changed, based on feedback from | 85 | Some of the semantics may need to be changed, based on feedback from |
| 86 | developers. Please <a href="contact.html">report</a> any problems you | 86 | developers. Please <a href="contact.html">report</a> any problems you |
diff --git a/doc/faq.html b/doc/faq.html index 8de8c3f1..b28a72cf 100644 --- a/doc/faq.html +++ b/doc/faq.html | |||
| @@ -152,9 +152,10 @@ The compiler will happily optimize away such indirections.</dd> | |||
| 152 | <dd>Because it's a compiler — it needs to generate native | 152 | <dd>Because it's a compiler — it needs to generate native |
| 153 | machine code. This means the code generator must be ported to each | 153 | machine code. This means the code generator must be ported to each |
| 154 | architecture. And the fast interpreter is written in assembler and | 154 | architecture. And the fast interpreter is written in assembler and |
| 155 | must be ported, too. This is quite an undertaking.<br> Currently only | 155 | must be ported, too. This is quite an undertaking.<br> |
| 156 | x86, x64 and PPC/e500v2 CPUs are supported. Other architectures will follow | 156 | The <a href="install.html">install documentation</a> shows the supported |
| 157 | based on sufficient user demand and/or sponsoring.</dd> | 157 | architectures. Other architectures will follow based on sufficient user |
| 158 | demand and/or sponsoring.</dd> | ||
| 158 | </dl> | 159 | </dl> |
| 159 | 160 | ||
| 160 | <dl> | 161 | <dl> |
diff --git a/doc/install.html b/doc/install.html index f6c99c17..7341fd07 100644 --- a/doc/install.html +++ b/doc/install.html | |||
| @@ -484,7 +484,8 @@ overridden, but it's <em>not</em> recommended, except for special needs | |||
| 484 | like cross-builds: | 484 | like cross-builds: |
| 485 | <tt>BUILDMODE, CC, HOST_CC, STATIC_CC, DYNAMIC_CC, CFLAGS, HOST_CFLAGS, | 485 | <tt>BUILDMODE, CC, HOST_CC, STATIC_CC, DYNAMIC_CC, CFLAGS, HOST_CFLAGS, |
| 486 | TARGET_CFLAGS, LDFLAGS, HOST_LDFLAGS, TARGET_LDFLAGS, TARGET_SHLDFLAGS, | 486 | TARGET_CFLAGS, LDFLAGS, HOST_LDFLAGS, TARGET_LDFLAGS, TARGET_SHLDFLAGS, |
| 487 | LIBS, HOST_LIBS, TARGET_LIBS, CROSS, HOST_SYS, TARGET_SYS</tt></li> | 487 | TARGET_FLAGS, LIBS, HOST_LIBS, TARGET_LIBS, CROSS, HOST_SYS, TARGET_SYS |
| 488 | </tt></li> | ||
| 488 | </ul> | 489 | </ul> |
| 489 | <p> | 490 | <p> |
| 490 | The build system has a special target for an amalgamated build, i.e. | 491 | The build system has a special target for an amalgamated build, i.e. |
diff --git a/doc/luajit.html b/doc/luajit.html index 5f01eaf4..7916b6c9 100644 --- a/doc/luajit.html +++ b/doc/luajit.html | |||
| @@ -79,8 +79,8 @@ standard Lua interpreter and can be deployed as a drop-in replacement. | |||
| 79 | <p> | 79 | <p> |
| 80 | LuaJIT offers more performance, at the expense of portability. It | 80 | LuaJIT offers more performance, at the expense of portability. It |
| 81 | currently runs on all popular operating systems based on | 81 | currently runs on all popular operating systems based on |
| 82 | <b>x86</b> or <b>x64 CPUs</b> (Linux, Windows, OSX etc.) or embedded Linux | 82 | <b>x86</b> or <b>x64</b> CPUs (Linux, Windows, OSX etc.) or embedded |
| 83 | systems based on <b>PPC/e500v2 CPUs</b>. | 83 | systems based on <b>ARM</b> (Android, iOS) or <b>PPC/e500v2</b> CPUs. |
| 84 | Other platforms will be supported in the future, based on user demand | 84 | Other platforms will be supported in the future, based on user demand |
| 85 | and sponsoring. | 85 | and sponsoring. |
| 86 | </p> | 86 | </p> |
