blob: 2a268e81e80e3337dc8ebfcbe764cc01dce25b0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<html>
<body>
<h2>Run the emscripten compiler in a web page, just for laughs</h2>
Open the web console to see stderr output
<hr>
<pre id="output"></pre>
<script>
arguments = ['', '../poppler.ll'];
//arguments = ['', '../tests/cases/phicubed.ll'];
</script>
<script src="compiler.js">
</script>
</body>
</html>
|