summaryrefslogtreecommitdiff
path: root/docs/FAQ.html
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-08-31 04:26:31 +0000
committerChris Lattner <sabre@nondot.org>2006-08-31 04:26:31 +0000
commitb495fb0e8c856f3f4494a125bbc369248e2e3197 (patch)
treef124ccc3a70b35190d8db9af75a9c8b43cfb407d /docs/FAQ.html
parent838f36f0bbd3da7911cc25bc761d2e05274f5e6a (diff)
downloadllvm-b495fb0e8c856f3f4494a125bbc369248e2e3197.tar.gz
llvm-b495fb0e8c856f3f4494a125bbc369248e2e3197.tar.bz2
llvm-b495fb0e8c856f3f4494a125bbc369248e2e3197.tar.xz
Add a note about C++ -> C with libstdc++
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29993 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/FAQ.html')
-rw-r--r--docs/FAQ.html13
1 files changed, 11 insertions, 2 deletions
diff --git a/docs/FAQ.html b/docs/FAQ.html
index 223e2b4346..2dffd203ff 100644
--- a/docs/FAQ.html
+++ b/docs/FAQ.html
@@ -541,8 +541,8 @@ C++ support for a processor that does not otherwise have a C++ compiler.
<p>or:</p>
<div class="doc_code">
- llvm-g++ a.cpp -c
- llvm-g++ b.cpp -c
+ llvm-g++ a.cpp -c<br>
+ llvm-g++ b.cpp -c<br>
llvm-g++ a.o b.o -o program
</div>
@@ -566,6 +566,15 @@ If you want/need it for a certain program, you can enable it by passing
use setjmp/longjmp to implement exception support that is correct but
relatively slow.
</p>
+
+<p>Also note: this specific sequence of commands won't work if you use a
+function defined in the C++ runtime library (or any other C++ library). To
+access an external C++ library, you must manually
+compile libstdc++ to LLVM bytecode, statically link it into your program, then
+use the commands above to convert the whole result into C code. Alternatively,
+you can compile the libraries and your application into two different chunks
+of C code and link them.</p>
+
</div>