xmltest.html 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
  3. <head>
  4. <title>Nimrod Programming Language</title>
  5. <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
  6. <link rel="stylesheet" type="text/css" href="style/style.css" />
  7. </head>
  8. <>
  9. <div id="main">
  10. <div id="links">
  11. <!-- **** INSERT LINKS HERE **** -->
  12. </div>
  13. <div id="logo"><h1>Nimrod Programming Language</h1></div>
  14. <div id="content">
  15. <div id="menu">
  16. <ul>
  17. <li><a
  18. href="index.html" title = "Nimrod - home" home</a></li>
  19. <!-- error: > missing -->
  20. <li><a
  21. href="news.html" title = "Nimrod - news">news</></>
  22. <li><a
  23. href="documentation.html" title = "Nimrod - docs">docs</a></li>
  24. <li><a id="selected"
  25. href="download.html" title = "Nimrod - download">download</a></li>
  26. <li><a
  27. href="community.html" title = "Nimrod - community">community</a></li>
  28. <li><a
  29. href="question.html" title = "Nimrod - FAQ">FAQ</a></li>
  30. </ul>
  31. </div>
  32. <div id="column1">
  33. <div class="sidebaritem">
  34. <div class="sbihead">
  35. <h1>latest news</h1>
  36. </div>
  37. <div class="sbicontent">
  38. <p><span class="newsdate">2009-01-22</span><br />Forum added!<br /><span class="newsdate">2009-01-07</span><br />Nimrod version 0.7.4 has been released! Get it <a class="reference external" href="./download.html">here</a>.<br /><span class="newsdate">2008-12-12</span><br />Nimrod version 0.7.2 has been released!<br /><span class="newsdate">2008-11-16</span><br />Nimrod version 0.7.0 has been released!<br /><span class="newsdate">2008-08-22</span><br />Nimrod version 0.6.0 has been released!<br /><span class="newsdate">2008-06-22</span><br />This page is finally online!<br /></p>
  39. </div>
  40. </div>
  41. <div class="sidebaritem">
  42. <div class="sbihead">
  43. <h1>additional links</h1>
  44. </div>
  45. <div class="sbilinks">
  46. <!-- **** INSERT ADDITIONAL LINKS HERE **** -->
  47. <ul>
  48. <li><a class="reference" href="http://gcc.gnu.org">GCC</a></li>
  49. <li><a class="reference" href="http://llvm.org">LLVM</a></li>
  50. </ul>
  51. </div>
  52. </div>
  53. </div>
  54. <div id="column2">
  55. <blockquote><p>There are two major products that come out of Berkeley: LSD and UNIX. We don't believe this to be a coincidence. -- Jeremy S. Anderson.</p></blockquote>
  56. <p>Here you can download the latest version of the Nimrod Compiler. Please choose your platform:</p>
  57. <ul class="simple"><li>source-based installation: <a class="reference external" href="download/nimrod_0.7.4.zip">download/nimrod_0.7.4.zip</a></li>
  58. <li>installer for Windows (i386): <a class="reference external" href="download/nimrod_0.7.4.exe">download/nimrod_0.7.4.exe</a> (includes LLVM and everything else you need)</li>
  59. </ul>
  60. <p>The source-based installation should work on most UNIX-like systems. Currently, it has been tested on these systems:</p>
  61. <ul class="simple"><li>Linux: i386, AMD64</li>
  62. <li>Mac OS X: i386</li>
  63. <li>FreeBSD: i386</li>
  64. </ul>
  65. <h1 id="installation">Installation</h1><h2 id="installation-on-linux-unix">Installation on Linux/UNIX</h2><dl class="docutils"><dt>Note:</dt>
  66. <dd>A C compiler is required - knowledge of C is not!</dd>
  67. </dl>
  68. <p>The GNU C Compiler is fully supported, other compilers may work. The C compiler should be in your <tt class="docutils literal"><span class="pre">$PATH</span></tt> (most likely the case). Note that some few Linux distributions do not ship with a GCC compiler preinstalled - then you have to install it.</p>
  69. <p>Install Nimrod by downloading the appropriate <tt class="docutils literal"><span class="pre">.zip</span></tt> file and extracting it to a directory of your choice. The Nimrod Compiler will stay in this directory (unless you copy it somewhere else). The compiler does not need write access to its directory anymore, so copying the nimrod folder to <tt class="docutils literal"><span class="pre">/opt</span></tt> does work.</p>
  70. <p>Then run the following command:<pre>
  71. sh build.sh</pre>
  72. </p>
  73. <p>Unlike other software, Nimrod does not distribute its files over the whole file hierarchy. This has the advantage that you can deinstall it by just deleting its folder. The disadvantage is that you have to add it to your <tt class="docutils literal"><span class="pre">PATH</span></tt> manually. An alternative is to create a symbolic link in <tt class="docutils literal"><span class="pre">/usr/bin</span></tt>:<pre>
  74. [sudo] ln -s $your_install_dir/bin/nimrod /usr/bin/nimrod</pre>
  75. </p>
  76. <h2 id="installation-on-the-macintosh">Installation on the Macintosh</h2><p>Only MacOS X is supported. Since MacOS X is UNIX based too, it works like the installation on Linux. You need to install Apple's developer's tools for the GNU Compiler Collection though.</p>
  77. <h2 id="installation-on-windows">Installation on Windows</h2><p>Install Nimrod by downloading and running the <tt class="docutils literal"><span class="pre">nimrod_$version.exe</span></tt> file. As default, the <tt class="docutils literal"><span class="pre">LLVM-GCC</span></tt> compiler is used that is bundled with this installer. You can change the configuration file to use another C compiler.</p>
  78. <p>Currently, the following C compilers are supported under Windows:</p>
  79. <ul class="simple"><li><p>Microsoft's Visual C++<br /><a class="reference external" href="http://msdn.microsoft.com/visualc">http://msdn.microsoft.com/visualc</a><br />(You need the SDK too - but not the full one: Essential are only the win32api header files and import libraries.)<br /></p></li>
  80. <li><p>Gnu C Compiler (the mingw version; the cygwin version has not been tested!)<br /><a class="reference external" href="http://www.mingw.org/download.shtml">http://www.mingw.org/download.shtml</a><br /></p></li>
  81. <li><p>LLVM with GNU C/C++ frontend<br /><a class="reference external" href="http://llvm.org/releases/download.html#2.2">http://llvm.org/releases/download.html#2.2</a><br /></p></li>
  82. <li><p>Digital Mars C++<br /><a class="reference external" href="http://www.digitalmars.com/download/freecompiler.html">http://www.digitalmars.com/download/freecompiler.html</a><br /></p></li>
  83. </ul>
  84. <p>For better compile times I recommend Digital Mars C++ -- it is easy to install and a small package.</p>
  85. <pre>
  86. x < 0 && y >= 0
  87. </pre>
  88. </div>
  89. </div>
  90. <div id="footer">
  91. copyright &copy; 2009 Andreas Rumpf | Last update: 2009-02-10
  92. | <a class="reference" href="http://validator.w3.org/check?uri=referer">XHTML 1.1</a>
  93. | <a class="reference" href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a>
  94. | <a class="reference" href="http://www.dcarter.co.uk">design by dcarter</a>
  95. </div>
  96. </div>
  97. </body>
  98. <bugtest att="value" />
  99. </html>