-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompat.html
126 lines (122 loc) · 4.49 KB
/
compat.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html>
<head>
<title>Jato</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="styles/styles.css" type="text/css" charset="utf-8" />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-38985323-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="wrap">
<div id="header">
<h1 id="logo"><a href="index.html">Jato - a JIT-only VM for Java</a></h1>
<ul id="nav">
<li><a href="docs.html">DOCUMENTATION</a></li>
<li><a class="active" href="compat.html">COMPATIBILITY</a></li>
<li><a href="projects.html">OPEN PROJECTS</a></li>
<li><a href="http://groups.google.com/group/jatovm">MAILING LIST</a></li>
<li><a href="https://github.com/jatovm/jato/issues">BUGS</a></li>
</ul>
</div>
<div id="content">
<h1>Compatibility</h1>
<table id="compat-table">
<tr>
<th id="app">Application</th><th id="version">Version</th><th id="status">Status</th><th id="notes">Notes</th>
</tr>
<tr>
<td id="app"><a href="http://www.eclipse.org/">Eclipse</a></td>
<td> </td>
<td id="status"><img alt="OK" src="images/status-ok.png" /></td>
<td> </td>
</tr>
<tr>
<td id="app"><a href="http://www.eclipse.org/jdt/overview.php#JDT_CORE">Eclipse Compiler for Java</a></td>
<td> </td>
<td id="status"><img alt="OK" src="images/status-ok.png" /></td>
<td> </td>
</tr>
<tr>
<td id="app"><a href="http://math.nist.gov/scimark2/">Java SciMark</a></td>
<td>2.0</td>
<td id="status"><img alt="OK" src="images/status-ok.png" /></td>
<td> </td>
</tr>
<tr>
<td id="app"><a href="http://www.liquid-reality.de:8080/display/liquid/Java+Tris">Java Tris</a></td>
<td> </td>
<td id="status"><img alt="OK" src="images/status-ok.png" /></td>
<td> </td>
</tr>
<tr>
<td id="app"><a href="http://dacapobench.org/">DaCapo</a></td>
<td>2006-10-MR2</td>
<td id="status"><img alt="OK" src="images/status-ok.png" /></td>
<td> </td>
</tr>
<tr>
<td id="app"><a href="http://hudson-ci.org/">Hudson</a></td>
<td>1.361</td>
<td id="status"><img alt="WARNING" src="images/status-warning.png" /></td>
<td>The web server starts up but xstream initialization fails which makes it unusable..</td>
</tr>
<tr>
<td id="app"><a href="http://javapc.sourceforge.net/home_home.html">JPC</a></td>
<td> </td>
<td id="status"><img alt="WARNING" src="images/status-warning.png" /></td>
<td>JPC starts up and is works but rendering bugs make it difficult to use.</td>
</tr>
<tr>
<td id="app"><a href="http://www.jruby.org/">JRuby</a></td>
<td>1.6.0 RC2</td>
<td id="status"><img alt="WARNING" src="images/status-warning.png" /></td>
<td>Hello world works but the Ruby test suite crashes.</td>
</tr>
<tr>
<td id="app"><a href="http://www.jython.org/">Jython</a></td>
<td>2.5.2 RC 4</td>
<td id="status"><img alt="WARNING" src="images/status-warning.png" /></td>
<td>Interactive shell starts up but doesn't display the prompt.</td>
</tr>
<tr>
<td id="app"><a href="http://ant.apache.org/">Apache Ant</a></td>
<td>1.7.1</td>
<td id="status"><img alt="BROKEN" src="images/status-broken.png" /></td>
<td>SIGSEGV when Apache Ivy plugin is used.</td>
</tr>
<tr>
<td id="app"><a href="http://www.frozen-bubble.org/">Frozen Bubble</a></td>
<td>1.0.2</td>
<td id="status"><img alt="BROKEN" src="images/status-broken.png" /></td>
<td>The application enters an infinite loop and runs out of memory.</td>
</tr>
<tr>
<td id="app"><a href="http://www.codealchemists.com/jdarkroom/">JDarkRoom</a></td>
<td> </td>
<td id="status"><img alt="BROKEN" src="images/status-broken.png" /></td>
<td>The application starts but is completely unusable.</td>
</tr>
<tr>
<td id="app"><a href="http://www.jedit.org/">JEdit</a></td>
<td>4.3pre17</td>
<td id="status"><img alt="BROKEN" src="images/status-broken.png" /></td>
<td>Application hangs at startup.</td>
</tr>
</table>
</div>
<div id="footer">
<p>Copyright © 2010. Contact: <a href="mailto:[email protected]">Pekka Enberg</a></p>
<p><a href="http://designpunct.ro" target="_blank">design by punct</a></p>
</div>
</div>
</body>
</html>