aboutsummaryrefslogtreecommitdiff
path: root/src/compiler_funcs.html
blob: a769955b0c09342c0720f298416fc1d0b7f4151d (plain)
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
<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 = ['tmp/emscripten_temp/tmpgo4sBT.txt', 'tmp/emscripten_temp/tmph9FP9W.func_0.ll', 'funcs', 'tmp/emscripten_temp/tmp0Aj1Vk.json']; // copy from emscripten.py output

  var outputElement = document.getElementById('output');
  print = function(x) {
    outputElement.innerHTML += 'output hidden, profiling mode';
    print = function(){};
    //outputElement.innerHTML += x;
  };

  // For generated code
  var Module = {
    print: function(x) {
      throw 'what?'
    }
  };
</script>
<script src="compiler.js">
</script>
</body>
</html>