Made to be HTML-4.01 (Strict)-compliant.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13500 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2004-05-12 18:49:47 +00:00
parent c53aefb5ac
commit 6a2b310ce2

View File

@ -1,8 +1,9 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="llvm.css" type="text/css" media="screen" /> <link rel="stylesheet" href="llvm.css" type="text/css" media="screen">
<title>Bootstrapping the LLVM C/C++ Front-End</title> <title>Bootstrapping the LLVM C/C++ Front-End</title>
</head> </head>
<body> <body>
@ -132,13 +133,13 @@ functions from C as referenced from C++, so we typically configure with
<li><p><b>Fix 1:</b> If you have system header files that include <li><p><b>Fix 1:</b> If you have system header files that include
inline assembly, you may have to modify them to remove the inline inline assembly, you may have to modify them to remove the inline
assembly, and install the modified versions in assembly, and install the modified versions in
<code>$CFEINSTALL/<i>target-triplet</i>/sys-include</code>.</p></li> <code>$CFEINSTALL/<i>target-triplet</i>/sys-include</code>.</li>
<li><b>Fix 2:</b> If you are building the C++ front-end on a CPU we <li><b>Fix 2:</b> If you are building the C++ front-end on a CPU we
haven't tried yet, you will probably have to edit the appropriate haven't tried yet, you will probably have to edit the appropriate
version of atomicity.h under version of atomicity.h under
<code>src/libstdc++-v3/config/cpu/<i>name-of-cpu</i>/atomicity.h</code> <code>src/libstdc++-v3/config/cpu/<i>name-of-cpu</i>/atomicity.h</code>
and apply a patch so that it does not use inline assembly.</p></li> and apply a patch so that it does not use inline assembly.</li>
</ul> </ul>
<p><b>Porting to a new architecture:</b> If you are porting the new front-end <p><b>Porting to a new architecture:</b> If you are porting the new front-end
@ -197,9 +198,7 @@ following means:</p>
<li> compiling and running a "hello, LLVM" program in C and C++.</li> <li> compiling and running a "hello, LLVM" program in C and C++.</li>
<li> running the tests under <tt>test/Programs</tt> using <code>gmake -C <li> running the tests under <tt>test/Programs</tt> using <code>gmake -C
test/Programs</code></li> test/Programs</code></li>
</ul> </ul></li>
</p>
</li>
</ol> </ol>
</div> </div>
@ -264,16 +263,19 @@ purpose. It is provided "as is" without express or implied warranty.
</pre> </pre>
</div> </div>
<!-- *********************************************************************** -->
<!-- *********************************************************************** --> <!-- *********************************************************************** -->
<hr> <hr>
<div class="doc_footer"> <address>
<address>Brian Gaeke</address> <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
<a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a> src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a>
<br> <a href="http://validator.w3.org/check/referer"><img
src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"></a>
Brian Gaeke<br>
<a href="http://llvm.cs.uiuc.edu">LLVM Compiler Infrastructure</a><br>
Last modified: $Date$ Last modified: $Date$
</div> </address>
</body> </body>
</html> </html>