aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Pall <mike>2025-03-09 16:10:22 +0100
committerMike Pall <mike>2025-03-09 16:10:22 +0100
commite27ee688172d1a63231d6fa74b3903d941e38d80 (patch)
tree6e61383d527b29619359245a25685d0edfe10c03
parent55a42da36ea6dd357ef928dd5c6776278b32ab92 (diff)
downloadluajit-e27ee688172d1a63231d6fa74b3903d941e38d80.tar.gz
luajit-e27ee688172d1a63231d6fa74b3903d941e38d80.tar.bz2
luajit-e27ee688172d1a63231d6fa74b3903d941e38d80.zip
Windows: Clarify installation directory layout.
Suggested by eabase. #1346
-rw-r--r--doc/install.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/install.html b/doc/install.html
index 051d755e..f67320a4 100644
--- a/doc/install.html
+++ b/doc/install.html
@@ -241,6 +241,19 @@ absolute path names &mdash; all modules are loaded relative to the
241directory where <tt>luajit.exe</tt> is installed 241directory where <tt>luajit.exe</tt> is installed
242(see <tt>src/luaconf.h</tt>). 242(see <tt>src/luaconf.h</tt>).
243</p> 243</p>
244<p>
245The final directory layout should look like this:
246</p>
247<pre class="code">
248├── luajit.exe
249├── lua51.dll
250├── <- put your own classic Lua/C API modules (*.dll) here
251└── lua
252 ├── <- put your own Lua modules (*.lua) here
253 └── jit
254 ├── bc.lua
255 └── (etc …)
256</pre>
244 257
245<h2 id="cross">Cross-compiling LuaJIT</h2> 258<h2 id="cross">Cross-compiling LuaJIT</h2>
246<p> 259<p>