status.html 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Status</title>
  5. <meta charset="utf-8">
  6. <meta name="Copyright" content="Copyright (C) 2005-2022">
  7. <meta name="Language" content="en">
  8. <link rel="stylesheet" type="text/css" href="bluequad.css" media="screen">
  9. <link rel="stylesheet" type="text/css" href="bluequad-print.css" media="print">
  10. <style type="text/css">
  11. ul li { padding-bottom: 0.3em; }
  12. </style>
  13. </head>
  14. <body>
  15. <div id="site">
  16. <a href="https://luajit.org"><span>Lua<span id="logo">JIT</span></span></a>
  17. </div>
  18. <div id="head">
  19. <h1>Status</h1>
  20. </div>
  21. <div id="nav">
  22. <ul><li>
  23. <a href="luajit.html">LuaJIT</a>
  24. <ul><li>
  25. <a href="https://luajit.org/download.html">Download <span class="ext">&raquo;</span></a>
  26. </li><li>
  27. <a href="install.html">Installation</a>
  28. </li><li>
  29. <a href="running.html">Running</a>
  30. </li></ul>
  31. </li><li>
  32. <a href="extensions.html">Extensions</a>
  33. <ul><li>
  34. <a href="ext_ffi.html">FFI Library</a>
  35. <ul><li>
  36. <a href="ext_ffi_tutorial.html">FFI Tutorial</a>
  37. </li><li>
  38. <a href="ext_ffi_api.html">ffi.* API</a>
  39. </li><li>
  40. <a href="ext_ffi_semantics.html">FFI Semantics</a>
  41. </li></ul>
  42. </li><li>
  43. <a href="ext_buffer.html">String Buffers</a>
  44. </li><li>
  45. <a href="ext_jit.html">jit.* Library</a>
  46. </li><li>
  47. <a href="ext_c_api.html">Lua/C API</a>
  48. </li><li>
  49. <a href="ext_profiler.html">Profiler</a>
  50. </li></ul>
  51. </li><li>
  52. <a class="current" href="status.html">Status</a>
  53. </li><li>
  54. <a href="faq.html">FAQ</a>
  55. </li><li>
  56. <a href="http://wiki.luajit.org/">Wiki <span class="ext">&raquo;</span></a>
  57. </li><li>
  58. <a href="https://luajit.org/list.html">Mailing List <span class="ext">&raquo;</span></a>
  59. </li></ul>
  60. </div>
  61. <div id="main">
  62. <p>
  63. This documentation is for LuaJIT 2.1.0-beta3. Please check the <tt>doc</tt>
  64. directory in each git branch for the version-specific documentation.
  65. </p>
  66. <p>
  67. The currently developed branches are LuaJIT&nbsp;2.1 and LuaJIT&nbsp;2.0.
  68. </p>
  69. <p>
  70. LuaJIT&nbsp;2.0 is in feature-freeze &mdash; new features will only
  71. be added to LuaJIT&nbsp;2.1.
  72. </p>
  73. <h2>Current Status</h2>
  74. <p>
  75. LuaJIT ought to run all Lua&nbsp;5.1-compatible source code just fine.
  76. It's considered a serious bug if the VM crashes or produces unexpected
  77. results &mdash; please report this.
  78. </p>
  79. <p>
  80. Known incompatibilities and issues in LuaJIT&nbsp;2.0:
  81. </p>
  82. <ul>
  83. <li>
  84. There are some differences in <b>implementation-defined</b> behavior.
  85. These either have a good reason, are arbitrary design choices,
  86. or are due to quirks in the VM. The latter cases may get fixed if a
  87. demonstrable need is shown.
  88. </li>
  89. <li>
  90. The Lua <b>debug API</b> is missing a couple of features (return
  91. hooks for non-Lua functions) and shows slightly different behavior
  92. in LuaJIT (no per-coroutine hooks, no tail call counting).
  93. </li>
  94. </ul>
  95. <br class="flush">
  96. </div>
  97. <div id="foot">
  98. <hr class="hide">
  99. Copyright &copy; 2005-2022
  100. <span class="noprint">
  101. &middot;
  102. <a href="contact.html">Contact</a>
  103. </span>
  104. </div>
  105. </body>
  106. </html>