Skip to content
Snippets Groups Projects
Commit ba6be317 authored by Maciej Fijalkowski's avatar Maciej Fijalkowski
Browse files

mention the default build contains stackless, remove the stackless build

instruction
parent 62f26ca8
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,8 @@
<span id="default-with-a-jit-compiler"></span><h1>&ldquo;JIT Compiler&rdquo; version</h1>
<p>These binaries include a Just-in-Time compiler. They only work on
x86 CPUs that have the <a class="reference external" href="http://en.wikipedia.org/wiki/SSE2">SSE2</a> instruction set (most of
them do, nowadays), or on x86-64 CPUs.
them do, nowadays), or on x86-64 CPUs. They also contain <a class="reference external" href="http://www.stackless.com/">stackless</a>
extensions, like <a class="reference external" href="http://codespeak.net/svn/greenlet/trunk/doc/greenlet.txt">greenlets</a>.
(This is the official release 1.7;
for the most up-to-date version see below.)</p>
<ul class="simple">
......@@ -84,8 +85,6 @@
release is too old for what you want to do.</li>
<li>No JIT: A version without the JIT. Consumes a bit less memory
and may be faster on short-running scripts.</li>
<li>Stackless: Provides <a class="reference external" href="http://www.stackless.com/">Stackless</a> extensions, as well as <a class="reference external" href="http://codespeak.net/svn/greenlet/trunk/doc/greenlet.txt">greenlets</a>.
It is not possible right now to combine Stackless features with the JIT.</li>
<li>Sandboxing: A special safe version. Read the docs about <a class="reference external" href="features.html#sandboxing">sandboxing</a>.
(It is also possible to <a class="reference internal" href="#translate">translate</a> a version that includes both
sandboxing and the JIT compiler, although as the JIT is relatively
......@@ -134,7 +133,6 @@
pypy translate.py -Ojit # get the JIT version
pypy translate.py -O2 # get the no-jit version
pypy translate.py -O2 --sandbox # get the sandbox version
pypy translate.py -O2 --stackless # get the stackless version
pypy translate.py -Ojit --backend=cli # only for branch/cli-jit
</pre>
</li>
......
......@@ -34,7 +34,8 @@
These binaries include a Just-in-Time compiler. They only work on
x86 CPUs that have the SSE2_ instruction set (most of
them do, nowadays), or on x86-64 CPUs.
them do, nowadays), or on x86-64 CPUs. They also contain `stackless`_
extensions, like `greenlets`_.
(This is the official release 1.7;
for the most up-to-date version see below.)
......@@ -65,9 +66,6 @@
* No JIT: A version without the JIT. Consumes a bit less memory
and may be faster on short-running scripts.
* Stackless: Provides Stackless_ extensions, as well as greenlets_.
It is not possible right now to combine Stackless features with the JIT.
* Sandboxing: A special safe version. Read the docs about sandboxing_.
(It is also possible to translate_ a version that includes both
sandboxing and the JIT compiler, although as the JIT is relatively
......@@ -126,7 +124,6 @@
pypy translate.py -Ojit # get the JIT version
pypy translate.py -O2 # get the no-jit version
pypy translate.py -O2 --sandbox # get the sandbox version
pypy translate.py -O2 --stackless # get the stackless version
pypy translate.py -Ojit --backend=cli # only for branch/cli-jit
5. Enjoy Mandelbrot ``:-)`` It takes on the order of half an hour to
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment