status.html 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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="https://luajit.org/list.html">Mailing List <span class="ext">&raquo;</span></a>
  57. </li></ul>
  58. </div>
  59. <div id="main">
  60. <p>
  61. This documentation is for LuaJIT 2.1.0-beta3. Please check the <tt>doc</tt>
  62. directory in each git branch for the version-specific documentation.
  63. </p>
  64. <p>
  65. The currently developed branches are LuaJIT&nbsp;2.1 and LuaJIT&nbsp;2.0.
  66. </p>
  67. <p>
  68. LuaJIT&nbsp;2.0 is in feature-freeze &mdash; new features will only
  69. be added to LuaJIT&nbsp;2.1.
  70. </p>
  71. <h2>Current Status</h2>
  72. <p>
  73. LuaJIT ought to run all Lua&nbsp;5.1-compatible source code just fine.
  74. It's considered a serious bug if the VM crashes or produces unexpected
  75. results &mdash; please report this.
  76. </p>
  77. <p>
  78. Known incompatibilities and issues in LuaJIT&nbsp;2.0:
  79. </p>
  80. <ul>
  81. <li>
  82. There are some differences in <b>implementation-defined</b> behavior.
  83. These either have a good reason, are arbitrary design choices,
  84. or are due to quirks in the VM. The latter cases may get fixed if a
  85. demonstrable need is shown.
  86. </li>
  87. <li>
  88. The Lua <b>debug API</b> is missing a couple of features (return
  89. hooks for non-Lua functions) and shows slightly different behavior
  90. in LuaJIT (no per-coroutine hooks, no tail call counting).
  91. </li>
  92. </ul>
  93. <br class="flush">
  94. </div>
  95. <div id="foot">
  96. <hr class="hide">
  97. Copyright &copy; 2005-2022
  98. <span class="noprint">
  99. &middot;
  100. <a href="contact.html">Contact</a>
  101. </span>
  102. </div>
  103. </body>
  104. </html>