5 You are near the bottom of a tree.
9 You see PDFs of the two published papers about vx32.
13 You see the source code behind the papers.
17 Upon closer examination, the src/ directory contains the following
20 libvx32/ the vx32 virtual machine itself
22 vxrun/ a simple portable execution environment
23 libvxc/ an optional C library for use in vxrun apps
25 vxlinux/ a simple delegation-based system jail for Linux
27 hash/ hash function benchmarks (Alpaca results in vx32 paper)
28 micro/ micro benchmarks (in vx32 paper)
29 vxa/ compression benchmarks (VXA results in vx32 paper)
36 On BSD machines you may need to say gmake instead.
40 Okay: cd src; make; make install
44 If you want to try the benchmarks on your own machines,
45 you can run "run.sh" in any of the benchmark directories
46 and then inspect results.txt
50 The individual subdirectories contain LICENSE files explaining
51 the copyrights and licenses.
53 The vx32 core, found in src/libvx32/, is licensed under the LGPL v2.1;
54 see src/libvx32/LICENSE for details.
56 The sample programs, found in src/vxrun/ and src/vxlinux/, are made
57 available under the traditional MIT license to encourage use as jumping-off
58 points for new programs. See src/vxrun/LICENSE and src/vxlinux/LICENSE.
60 The C library, which is found in src/libvxc and is absolutely not required
61 in order to use vx32, is mostly taken from FreeBSD and Sun Microsystems
62 code, both of which use BSD-like licenses. See the copyright notices in the
63 individual files. Files without copyright notices were written by us and
64 are licensed under an MIT license.
66 The benchmarks in hash/ and vxa/ are mostly code written by others.
67 See the copyright notices in individual files. The benchmarks in micro/
68 are too short to worry about.
70 The Plan 9 VX user-level operating system, found in src/9vx/, is
71 derived from Plan 9 from Bell Labs and is made available under the
72 terms of the Lucent Public License. See src/9vx/LICENSE.
76 You probably don't need to do that.
80 Okay, if you insist. You can download vx32-specific versions
81 of binutils and gcc from http://pdos.csail.mit.edu/~baford/vm/
82 and then extract them in this directory. Then you can run
85 ./configure --target=vx32
90 ./configure --enable-languages=c --disable-libssp --target=vx32
95 But again, you probably don't need to do that.
96 If you are on a 32-bit ELF machine, your host gcc is likely fine.
100 Russ Cox <rsc@swtch.com>
101 Bryan Ford <baford@pdos.csail.mit.edu>