summaryrefslogtreecommitdiff
path: root/doc/faq.html
diff options
context:
space:
mode:
authorMike Pall <mike>2010-02-28 21:45:38 +0100
committerMike Pall <mike>2010-02-28 21:51:01 +0100
commit2e22d33d9d256e9a1551229f1b51e2a6f02da2f6 (patch)
tree55c51dd77b08afd7044a046cb3b037106285000c /doc/faq.html
parent956065fd047de66aab31cd4336f3e663e87db3e3 (diff)
downloadluajit-2e22d33d9d256e9a1551229f1b51e2a6f02da2f6.tar.gz
luajit-2e22d33d9d256e9a1551229f1b51e2a6f02da2f6.tar.bz2
luajit-2e22d33d9d256e9a1551229f1b51e2a6f02da2f6.zip
Enable JIT compiler for x64.
Only works on Linux/x64 and Windows/x64 right now. Force an x64 build on Linux/x64 with: make CC="gcc -m64" NYI: handle on-trace OOM errors. NYI: improve register allocation for x64.
Diffstat (limited to '')
-rw-r--r--doc/faq.html5
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/faq.html b/doc/faq.html
index 15632eae..6d724325 100644
--- a/doc/faq.html
+++ b/doc/faq.html
@@ -137,9 +137,8 @@ The compiler will happily optimize away such indirections.</dd>
137machine code. This means the code generator must be ported to each 137machine code. This means the code generator must be ported to each
138architecture. And the fast interpreter is written in assembler and 138architecture. And the fast interpreter is written in assembler and
139must be ported, too. This is quite an undertaking.<br> Currently only 139must be ported, too. This is quite an undertaking.<br> Currently only
140x86 CPUs are supported. x64 support is in the works. Other 140x86 and x64 CPUs are supported. Other architectures will follow based
141architectures will follow with sufficient demand and/or 141on sufficient user demand and/or sponsoring.</dd>
142sponsoring.</dd>
143</dl> 142</dl>
144 143
145<dl> 144<dl>